Skip to content

Commit 9cce13b

Browse files
authored
Merge pull request #39 from pyexcel/dev
release 0.6.1
2 parents 9c0bbbd + dcabf0e commit 9cce13b

File tree

7 files changed

+40
-20
lines changed

7 files changed

+40
-20
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change log
22
================================================================================
33

4+
0.6.1 - 21.10.2020
5+
--------------------------------------------------------------------------------
6+
7+
**Updated**
8+
9+
#. Restrict this library to get installed on python 3.6+, because pyexcel-io
10+
0.6.0+ supports only python 3.6+.
11+
412
0.6.0 - 8.10.2020
513
--------------------------------------------------------------------------------
614

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pyexcel-xls - Let you focus on data, instead of xls format
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-xls.svg?branch=master
@@ -65,6 +65,8 @@ Known constraints
6565

6666
Fonts, colors and charts are not supported.
6767

68+
Nor to read password protected xls, xlsx and ods files.
69+
6870
Installation
6971
================================================================================
7072

changelog.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-xls
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: Updated
6+
details:
7+
- "Restrict this library to get installed on python 3.6+, because pyexcel-io 0.6.0+ supports only python 3.6+."
8+
date: 21.10.2020
9+
version: 0.6.1
410
- changes:
511
- action: Updated
612
details:

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424

2525
project = 'pyexcel-xls'
2626
copyright = '2015-2020 Onni Software Ltd.'
27-
author = 'chfw'
27+
author = 'C.W.'
2828
# The short X.Y version
29-
version = '0.6.0'
29+
version = '0.6.1'
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.6.0'
31+
release = '0.6.1'
3232

3333
# -- General configuration ---------------------------------------------------
3434

lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pip install flake8
2-
flake8 --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long . && python setup.py checkdocs
2+
flake8 --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long . && python setup.py checkdocs

pyexcel-xls.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-xls"
33
nick_name: xls
4-
version: 0.6.0
5-
current_version: 0.6.0
6-
release: 0.6.0
4+
version: 0.6.1
5+
current_version: 0.6.1
6+
release: 0.6.1
77
file_type: xls
88
is_on_conda: true
99
dependencies:
@@ -14,3 +14,5 @@ test_dependencies:
1414
- pyexcel
1515
description: A wrapper library to read, manipulate and write data in xls format. It reads xlsx and xlsm format
1616
moban_command: false
17+
python_requires: ">=3.6"
18+
min_python_version: "3.6"

setup.py

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@
3131
locale.setlocale(locale.LC_ALL, "en_US.UTF-8")
3232

3333
NAME = "pyexcel-xls"
34-
AUTHOR = "chfw"
35-
VERSION = "0.6.0"
34+
AUTHOR = "C.W."
35+
VERSION = "0.6.1"
3636
3737
LICENSE = "New BSD"
3838
DESCRIPTION = (
3939
"A wrapper library to read, manipulate and write data in xls format. It" +
4040
"reads xlsx and xlsm format"
4141
)
4242
URL = "https://github.com/pyexcel/pyexcel-xls"
43-
DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL
43+
DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL
4444
FILES = ["README.rst","CONTRIBUTORS.rst", "CHANGELOG.rst"]
4545
KEYWORDS = [
4646
"python",
@@ -53,18 +53,19 @@
5353
"Topic :: Software Development :: Libraries",
5454
"Programming Language :: Python",
5555
"Intended Audience :: Developers",
56-
"Programming Language :: Python :: 2.6",
57-
"Programming Language :: Python :: 2.7",
58-
"Programming Language :: Python :: 3.3",
59-
"Programming Language :: Python :: 3.4",
60-
"Programming Language :: Python :: 3.5",
56+
57+
"Programming Language :: Python :: 3 :: Only",
58+
59+
60+
6161
"Programming Language :: Python :: 3.6",
6262
"Programming Language :: Python :: 3.7",
6363
"Programming Language :: Python :: 3.8",
6464

6565
'Programming Language :: Python :: Implementation :: PyPy'
6666
]
6767

68+
PYTHON_REQUIRES = ">=3.6"
6869

6970
INSTALL_REQUIRES = [
7071
"pyexcel-io>=0.6.2",
@@ -78,13 +79,14 @@
7879
}
7980
# You do not need to read beyond this line
8081
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
81-
GS_COMMAND = ("gs pyexcel-xls v0.6.0 " +
82-
"Find 0.6.0 in changelog for more details")
82+
HERE = os.path.abspath(os.path.dirname(__file__))
83+
84+
GS_COMMAND = ("gease pyexcel-xls v0.6.1 " +
85+
"Find 0.6.1 in changelog for more details")
8386
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8487
"Please install gease to enable it.")
8588
UPLOAD_FAILED_MSG = (
8689
'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND)
87-
HERE = os.path.abspath(os.path.dirname(__file__))
8890

8991

9092
class PublishCommand(Command):
@@ -130,7 +132,6 @@ def run(self):
130132
"publish": PublishCommand
131133
})
132134

133-
134135
def has_gease():
135136
"""
136137
test if github release command is installed
@@ -199,6 +200,7 @@ def filter_out_test_code(file_handle):
199200
long_description=read_files(*FILES),
200201
license=LICENSE,
201202
keywords=KEYWORDS,
203+
python_requires=PYTHON_REQUIRES,
202204
extras_require=EXTRAS_REQUIRE,
203205
tests_require=["nose"],
204206
install_requires=INSTALL_REQUIRES,

0 commit comments

Comments
 (0)