🥚 🎡 release 0.6.0

This commit is contained in:
chfw 2020-10-08 22:46:46 +01:00
parent ca67cc9609
commit ebb9c2f8f2
8 changed files with 18 additions and 13 deletions

View File

@ -1,12 +1,12 @@
Change log Change log
================================================================================ ================================================================================
0.6.0 - 2020 0.6.0 - 9.10.2020
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
**added** **added**
#. new style reader and writer plugins. works with pyexcel-io v0.6.0 #. new style reader and writer plugins. works with pyexcel-io v0.6.2
0.5.6 - 19.03.2019 0.5.6 - 19.03.2019
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -13,7 +13,7 @@ that the following conditions are met:
and/or other materials provided with the distribution. and/or other materials provided with the distribution.
* Neither the name of 'pyexcel-ods' nor the names of the contributors * Neither the name of 'pyexcel-ods' nor the names of the contributors
may be used to endorse or promote products derived from this software may not be used to endorse or promote products derived from this software
without specific prior written permission. without specific prior written permission.
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND

View File

@ -25,6 +25,11 @@ pyexcel-ods - Let you focus on data, instead of ods format
.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg .. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg
:target: https://gitter.im/pyexcel/Lobby :target: https://gitter.im/pyexcel/Lobby
.. 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
:target: https://moban.readthedocs.io/en/latest/#at-scale-continous-templating-for-open-source-projects
.. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square
:target: https://github.com/psf/black
**pyexcel-ods** is a tiny wrapper library to read, manipulate and write data in **pyexcel-ods** is a tiny wrapper library to read, manipulate and write data in
ods format using python 2.6 and python 2.7. You are likely to use it with ods format using python 2.6 and python 2.7. You are likely to use it with

View File

@ -4,8 +4,8 @@ releases:
- changes: - changes:
- action: added - action: added
details: details:
- 'new style reader and writer plugins. works with pyexcel-io v0.6.0' - 'new style reader and writer plugins. works with pyexcel-io v0.6.2'
date: 2020 date: 9.10.2020
version: 0.6.0 version: 0.6.0
- changes: - changes:
- action: added - action: added

View File

@ -27,7 +27,7 @@ author = 'chfw'
# The short X.Y version # The short X.Y version
version = '0.6.0' version = '0.6.0'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.5.6' release = '0.6.0'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------

View File

@ -3,11 +3,11 @@ name: "pyexcel-ods"
nick_name: ods nick_name: ods
version: 0.6.0 version: 0.6.0
current_version: 0.6.0 current_version: 0.6.0
release: 0.5.6 release: 0.6.0
copyright_year: 2015-2020 copyright_year: 2015-2020
file_type: ods file_type: ods
dependencies: dependencies:
- pyexcel-io>=0.5.16 - pyexcel-io>=0.6.2
- odfpy>=1.3.5 - odfpy>=1.3.5
test_dependencies: test_dependencies:
- pyexcel - pyexcel

View File

@ -1,2 +1,2 @@
pyexcel-io>=0.5.16 pyexcel-io>=0.6.2
odfpy>=1.3.5 odfpy>=1.3.5

View File

@ -36,7 +36,7 @@ DESCRIPTION = (
"A wrapper library to read, manipulate and write data in ods format" "A wrapper library to read, manipulate and write data in ods format"
) )
URL = "https://github.com/pyexcel/pyexcel-ods" URL = "https://github.com/pyexcel/pyexcel-ods"
DOWNLOAD_URL = "%s/archive/0.5.6.tar.gz" % URL DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"] FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = [ KEYWORDS = [
"python", "python",
@ -60,7 +60,7 @@ CLASSIFIERS = [
PYTHON_REQUIRES = ">=3.6" PYTHON_REQUIRES = ">=3.6"
INSTALL_REQUIRES = [ INSTALL_REQUIRES = [
"pyexcel-io>=0.5.16", "pyexcel-io>=0.6.2",
"odfpy>=1.3.5", "odfpy>=1.3.5",
] ]
SETUP_COMMANDS = {} SETUP_COMMANDS = {}
@ -70,8 +70,8 @@ EXTRAS_REQUIRE = {
} }
# You do not need to read beyond this line # You do not need to read beyond this line
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable) PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
GS_COMMAND = ("gs pyexcel-ods v0.5.6 " + GS_COMMAND = ("gs pyexcel-ods v0.6.0 " +
"Find 0.5.6 in changelog for more details") "Find 0.6.0 in changelog for more details")
NO_GS_MESSAGE = ("Automatic github release is disabled. " + NO_GS_MESSAGE = ("Automatic github release is disabled. " +
"Please install gease to enable it.") "Please install gease to enable it.")
UPLOAD_FAILED_MSG = ( UPLOAD_FAILED_MSG = (