Skip to content

Commit fea2fad

Browse files
committed
This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst
1 parent 7460696 commit fea2fad

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Change log
22
================================================================================
33

4-
0.5.0-rc1 - 18.10.2020
4+
0.6.1 - 18.10.2020
55
--------------------------------------------------------------------------------
66

77
**updated**

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pyexcel-xlsbr - Let you focus on data, instead of file formats
55
.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel.github.io/master/images/patreon.png
66
:target: https://www.patreon.com/chfw
77

8-
.. image:: https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg
8+
.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel-mobans/master/images/awesome-badge.svg
99
:target: https://awesome-python.com/#specific-formats-processing
1010

1111
.. image:: https://travis-ci.org/pyexcel/pyexcel-xlsbr.svg?branch=master

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
copyright = '2015-2020 Onni Software Ltd.'
2626
author = 'C.W.'
2727
# The short X.Y version
28-
version = '0.6.0'
28+
version = '0.6.1'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.6.0'
30+
release = '0.6.1'
3131

3232
# -- General configuration ---------------------------------------------------
3333

setup.py

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232

3333
NAME = "pyexcel-xlsbr"
3434
AUTHOR = "C.W."
35-
VERSION = "0.6.0"
35+
VERSION = "0.6.1"
3636
EMAIL = "info@pyexcel.org"
3737
LICENSE = "New BSD"
3838
DESCRIPTION = (
3939
"read Microsoft Excel tm xlsb file"
4040
)
4141
URL = "https://github.com/pyexcel/pyexcel-xlsbr"
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",
@@ -49,17 +49,18 @@
4949
"Topic :: Software Development :: Libraries",
5050
"Programming Language :: Python",
5151
"Intended Audience :: Developers",
52-
"Programming Language :: Python :: 2.6",
53-
"Programming Language :: Python :: 2.7",
54-
"Programming Language :: Python :: 3.3",
55-
"Programming Language :: Python :: 3.4",
56-
"Programming Language :: Python :: 3.5",
52+
53+
"Programming Language :: Python :: 3 :: Only",
54+
55+
56+
5757
"Programming Language :: Python :: 3.6",
5858
"Programming Language :: Python :: 3.7",
5959
"Programming Language :: Python :: 3.8",
6060

6161
]
6262

63+
PYTHON_REQUIRES = ">=3.6"
6364

6465
INSTALL_REQUIRES = [
6566
"pyxlsb",
@@ -74,8 +75,8 @@
7475
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
7576
HERE = os.path.abspath(os.path.dirname(__file__))
7677

77-
GS_COMMAND = ("gease pyexcel-xlsbr v0.6.0 " +
78-
"Find 0.6.0 in changelog for more details")
78+
GS_COMMAND = ("gease pyexcel-xlsbr v0.6.1 " +
79+
"Find 0.6.1 in changelog for more details")
7980
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8081
"Please install gease to enable it.")
8182
UPLOAD_FAILED_MSG = (
@@ -193,6 +194,7 @@ def filter_out_test_code(file_handle):
193194
long_description=read_files(*FILES),
194195
license=LICENSE,
195196
keywords=KEYWORDS,
197+
python_requires=PYTHON_REQUIRES,
196198
extras_require=EXTRAS_REQUIRE,
197199
tests_require=["nose"],
198200
install_requires=INSTALL_REQUIRES,

0 commit comments

Comments
 (0)