This commit is contained in:
chfw 2018-08-30 23:04:47 +01:00
parent 9a5a463af7
commit 48f45f192c
6 changed files with 27 additions and 12 deletions

View File

@ -1,6 +1,15 @@
Change log
================================================================================
0.5.9.1 - 30.08.2018
--------------------------------------------------------------------------------
updated
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#. `#53 <https://github.com/pyexcel/pyexcel-io/issues/53>`_, upgrade lml
dependency to at least 0.0.2
0.5.9 - 23.08.2018
--------------------------------------------------------------------------------

View File

@ -1,6 +1,12 @@
name: pyexcel-io
organisation: pyexcel
releases:
- changes:
- action: updated
details:
- '`#53`, upgrade lml dependency to at least 0.0.2'
date: 30.08.2018
version: 0.5.9.1
- changes:
- action: added
details:

View File

@ -29,9 +29,9 @@ copyright = u'2015-2018 Onni Software Ltd.'
author = u'C.W.'
# The short X.Y version
version = u'0.5.9'
version = u'0.5.9.1'
# The full version, including alpha/beta/rc tags
release = u'0.5.9'
release = u'0.5.9.1'
# -- General configuration ---------------------------------------------------

View File

@ -1,12 +1,12 @@
overrides: "pyexcel.yaml"
name: "pyexcel-io"
nick_name: io
version: 0.5.9
current_version: 0.5.9
release: 0.5.9
version: 0.5.9.1
current_version: 0.5.9.1
release: 0.5.9.1
dependencies:
- ordereddict;python_version<"2.7"
- lml==0.0.1
- lml>=0.0.2
extra_dependencies:
- xls:
- pyexcel-xls>=0.5.0

View File

@ -1,2 +1,2 @@
ordereddict;python_version<"2.7"
lml==0.0.1
lml>=0.0.2

View File

@ -11,7 +11,7 @@ PY26 = PY2 and sys.version_info[1] < 7
NAME = 'pyexcel-io'
AUTHOR = 'C.W.'
VERSION = '0.5.9'
VERSION = '0.5.9.1'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
@ -19,7 +19,7 @@ DESCRIPTION = (
'format and to/from databases'
)
URL = 'https://github.com/pyexcel/pyexcel-io'
DOWNLOAD_URL = '%s/archive/0.5.9.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.5.9.1.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'API',
@ -47,7 +47,7 @@ CLASSIFIERS = [
]
INSTALL_REQUIRES = [
'lml==0.0.1',
'lml>=0.0.2',
]
SETUP_COMMANDS = {}
@ -63,8 +63,8 @@ EXTRAS_REQUIRE = {
# You do not need to read beyond this line
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
sys.executable)
GS_COMMAND = ('gs pyexcel-io v0.5.9 ' +
"Find 0.5.9 in changelog for more details")
GS_COMMAND = ('gs pyexcel-io v0.5.9.1 ' +
"Find 0.5.9.1 in changelog for more details")
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
'Please install gease to enable it.')
UPLOAD_FAILED_MSG = (