Skip to content

Commit ff27a18

Browse files
committed
🥚 🎡 release 0.6.0
1 parent 21d2903 commit ff27a18

File tree

8 files changed

+41
-19
lines changed

8 files changed

+41
-19
lines changed

CHANGELOG.rst

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

4+
0.6.0 - 8.10.2020
5+
--------------------------------------------------------------------------------
6+
7+
**Updated**
8+
9+
#. New style xlsx plugins, promoted by pyexcel-io v0.6.2.
10+
411
0.5.3 - 23.06.2020
512
--------------------------------------------------------------------------------
613

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2019 by Onni Software Ltd. and its contributors
1+
Copyright (c) 2015-2020 by Onni Software Ltd. and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well
@@ -13,7 +13,7 @@ that the following conditions are met:
1313
and/or other materials provided with the distribution.
1414

1515
* Neither the name of 'pyexcel-xlsxr' nor the names of the contributors
16-
may be used to endorse or promote products derived from this software
16+
may not be used to endorse or promote products derived from this software
1717
without specific prior written permission.
1818

1919
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ pyexcel-xlsxr - Let you focus on data, instead of xlsx format
2525
.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg
2626
:target: https://gitter.im/pyexcel/Lobby
2727

28+
.. image:: https://img.shields.io/static/v1?label=continuous%20templating&message=%E6%A8%A1%E7%89%88%E6%9B%B4%E6%96%B0&color=blue&style=flat-square
29+
:target: https://moban.readthedocs.io/en/latest/#at-scale-continous-templating-for-open-source-projects
30+
31+
.. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square
32+
:target: https://github.com/psf/black
2833

2934
**pyexcel-xlsxr** is a specialized xlsx reader using lxml. It does partial reading, meaning
3035
it wont load all content into memory.

changelog.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-xlsxr
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: Updated
6+
details:
7+
- 'New style xlsx plugins, promoted by pyexcel-io v0.6.2.'
8+
date: 8.10.2020
9+
version: 0.6.0
410
- changes:
511
- action: Fixed
612
details:

pyexcel-xlsxr.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ name: "pyexcel-xlsxr"
33
nick_name: "xlsxr"
44
version: "0.6.0"
55
current_version: "0.6.0"
6-
release: "0.5.3"
6+
release: "0.6.0"
77
file_type: xlsx
88
nodocs: true
99
dependencies:
10-
- lxml >= 3.4.4
11-
- pyexcel-io >= 0.5.4
10+
- lxml>=3.4.4
11+
- pyexcel-io>=0.6.2
1212
description: "Read xlsx file using partial xml"
1313
test_dependencies:
14-
- pyexcel<=0.6.0
14+
- pyexcel
1515
- pyexcel-xlsxw
16+
python_requires: ">=3.6"
17+
min_python_version: "3.6"

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
lxml >= 3.4.4
2-
pyexcel-io >= 0.5.4
1+
lxml>=3.4.4
2+
pyexcel-io>=0.6.2

setup.py

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"Read xlsx file using partial xml"
4040
)
4141
URL = "https://github.com/pyexcel/pyexcel-xlsxr"
42-
DOWNLOAD_URL = "%s/archive/0.5.3.tar.gz" % URL
42+
DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL
4343
FILES = ["README.rst", "CHANGELOG.rst"]
4444
KEYWORDS = [
4545
"python",
@@ -49,21 +49,22 @@
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 = [
65-
"lxml >= 3.4.4",
66-
"pyexcel-io >= 0.5.4",
66+
"lxml>=3.4.4",
67+
"pyexcel-io>=0.6.2",
6768
]
6869
SETUP_COMMANDS = {}
6970

@@ -72,8 +73,8 @@
7273
}
7374
# You do not need to read beyond this line
7475
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
75-
GS_COMMAND = ("gs pyexcel-xlsxr v0.5.3 " +
76-
"Find 0.5.3 in changelog for more details")
76+
GS_COMMAND = ("gs pyexcel-xlsxr v0.6.0 " +
77+
"Find 0.6.0 in changelog for more details")
7778
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7879
"Please install gease to enable it.")
7980
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,

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ collective.checkdocs
99
pygments
1010
moban
1111
moban_jinja2_github
12-
pyexcel<=0.6.0
12+
pyexcel
1313
pyexcel-xlsxw

0 commit comments

Comments
 (0)