From f855545e2d55cad162d918935df6ebded78fd3d3 Mon Sep 17 00:00:00 2001 From: chfw Date: Mon, 11 Nov 2024 08:42:07 +0000 Subject: [PATCH] This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst --- .readthedocs.yml | 23 +++++++++++++++++++++++ CHANGELOG.rst | 8 ++++++++ pyexcel_xlsxr/_version.py | 2 +- setup.py | 8 ++++---- 4 files changed, 36 insertions(+), 5 deletions(-) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000..9e00174 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,23 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.12" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +# Optionally build your docs in additional formats such as PDF +formats: + - pdf + +python: + install: + - requirements: docs/requirements.txt diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 332cd64..885aaf6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Change log ================================================================================ +0.6.1 - 11.11.2024 +-------------------------------------------------------------------------------- + +**Updated** + +#. #9: Potential fix for incorrect reading of data with empty cells when used + with pyexcel + 0.6.0 - 10.10.2020 -------------------------------------------------------------------------------- diff --git a/pyexcel_xlsxr/_version.py b/pyexcel_xlsxr/_version.py index d876429..91ed185 100644 --- a/pyexcel_xlsxr/_version.py +++ b/pyexcel_xlsxr/_version.py @@ -1,2 +1,2 @@ -__version__ = '0.6.0' +__version__ = '0.6.1' __author__ = 'C.W.' diff --git a/setup.py b/setup.py index fca8343..8073b20 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,14 @@ NAME = "pyexcel-xlsxr" AUTHOR = "C.W." -VERSION = "0.6.0" +VERSION = "0.6.1" EMAIL = "info@pyexcel.org" LICENSE = "New BSD" DESCRIPTION = ( "Read xlsx file using partial xml" ) URL = "https://github.com/pyexcel/pyexcel-xlsxr" -DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL +DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL FILES = ["README.rst", "CHANGELOG.rst"] KEYWORDS = [ "python", @@ -75,8 +75,8 @@ PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable) HERE = os.path.abspath(os.path.dirname(__file__)) -GS_COMMAND = ("gease pyexcel-xlsxr v0.6.0 " + - "Find 0.6.0 in changelog for more details") +GS_COMMAND = ("gease pyexcel-xlsxr v0.6.1 " + + "Find 0.6.1 in changelog for more details") NO_GS_MESSAGE = ("Automatic github release is disabled. " + "Please install gease to enable it.") UPLOAD_FAILED_MSG = (