File tree Expand file tree Collapse file tree 4 files changed +36
-5
lines changed
Expand file tree Collapse file tree 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 11Change log
22================================================================================
33
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+
4120.6.0 - 10.10.2020
513--------------------------------------------------------------------------------
614
Original file line number Diff line number Diff line change 1- __version__ = '0.6.0 '
1+ __version__ = '0.6.1 '
22__author__ = 'C.W.'
Original file line number Diff line number Diff line change 3232
3333NAME = "pyexcel-xlsxr"
3434AUTHOR = "C.W."
35- VERSION = "0.6.0 "
35+ VERSION = "0.6.1 "
36363737LICENSE = "New BSD"
3838DESCRIPTION = (
3939 "Read xlsx file using partial xml"
4040)
4141URL = "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
4343FILES = ["README.rst" , "CHANGELOG.rst" ]
4444KEYWORDS = [
4545 "python" ,
7575PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi" .format (sys .executable )
7676HERE = os .path .abspath (os .path .dirname (__file__ ))
7777
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" )
8080NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8181 "Please install gease to enable it." )
8282UPLOAD_FAILED_MSG = (
You can’t perform that action at this time.
0 commit comments