File tree 4 files changed +36
-5
lines changed
4 files changed +36
-5
lines changed Original file line number Diff line number Diff line change
1
+ # .readthedocs.yml
2
+ # Read the Docs configuration file
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ # Required
6
+ version : 2
7
+
8
+ build :
9
+ os : ubuntu-22.04
10
+ tools :
11
+ python : " 3.12"
12
+
13
+ # Build documentation in the docs/ directory with Sphinx
14
+ sphinx :
15
+ configuration : docs/source/conf.py
16
+
17
+ # Optionally build your docs in additional formats such as PDF
18
+ formats :
19
+ - pdf
20
+
21
+ python :
22
+ install :
23
+ - requirements : docs/requirements.txt
Original file line number Diff line number Diff line change 1
1
Change log
2
2
================================================================================
3
3
4
+ 0.6.1 - 11.11.2024
5
+ --------------------------------------------------------------------------------
6
+
7
+ **Updated **
8
+
9
+ #. #9: Potential fix for incorrect reading of data with empty cells when used
10
+ with pyexcel
11
+
4
12
0.6.0 - 10.10.2020
5
13
--------------------------------------------------------------------------------
6
14
Original file line number Diff line number Diff line change 1
- __version__ = '0.6.0 '
1
+ __version__ = '0.6.1 '
2
2
__author__ = 'C.W.'
Original file line number Diff line number Diff line change 32
32
33
33
NAME = "pyexcel-xlsxr"
34
34
AUTHOR = "C.W."
35
- VERSION = "0.6.0 "
35
+ VERSION = "0.6.1 "
36
36
37
37
LICENSE = "New BSD"
38
38
DESCRIPTION = (
39
39
"Read xlsx file using partial xml"
40
40
)
41
41
URL = "https://github.com/pyexcel/pyexcel-xlsxr"
42
- DOWNLOAD_URL = "%s/archive/0.6.0 .tar.gz" % URL
42
+ DOWNLOAD_URL = "%s/archive/0.6.1 .tar.gz" % URL
43
43
FILES = ["README.rst" , "CHANGELOG.rst" ]
44
44
KEYWORDS = [
45
45
"python" ,
75
75
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi" .format (sys .executable )
76
76
HERE = os .path .abspath (os .path .dirname (__file__ ))
77
77
78
- GS_COMMAND = ("gease pyexcel-xlsxr v0.6.0 " +
79
- "Find 0.6.0 in changelog for more details" )
78
+ GS_COMMAND = ("gease pyexcel-xlsxr v0.6.1 " +
79
+ "Find 0.6.1 in changelog for more details" )
80
80
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
81
81
"Please install gease to enable it." )
82
82
UPLOAD_FAILED_MSG = (
You can’t perform that action at this time.
0 commit comments