Skip to content

Commit f855545

Browse files
chfwgithub-actions[bot]
authored andcommitted
This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst
1 parent 39f53dc commit f855545

File tree

4 files changed

+36
-5
lines changed

4 files changed

+36
-5
lines changed

.readthedocs.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change 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+
412
0.6.0 - 10.10.2020
513
--------------------------------------------------------------------------------
614

pyexcel_xlsxr/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '0.6.0'
1+
__version__ = '0.6.1'
22
__author__ = 'C.W.'

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232

3333
NAME = "pyexcel-xlsxr"
3434
AUTHOR = "C.W."
35-
VERSION = "0.6.0"
35+
VERSION = "0.6.1"
3636
3737
LICENSE = "New BSD"
3838
DESCRIPTION = (
3939
"Read xlsx file using partial xml"
4040
)
4141
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
4343
FILES = ["README.rst", "CHANGELOG.rst"]
4444
KEYWORDS = [
4545
"python",
@@ -75,8 +75,8 @@
7575
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
7676
HERE = 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")
8080
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8181
"Please install gease to enable it.")
8282
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)