Skip to content

Commit

Permalink
This is an auto-commit, updating project meta data, such as changelog…
Browse files Browse the repository at this point in the history
….rst, contributors.rst
  • Loading branch information
chfw authored and github-actions[bot] committed Nov 11, 2024
1 parent 39f53dc commit f855545
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 5 deletions.
23 changes: 23 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
--------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion pyexcel_xlsxr/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.6.0'
__version__ = '0.6.1'
__author__ = 'C.W.'
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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 = (
Expand Down

0 comments on commit f855545

Please sign in to comment.