🥚 🎡 release 0.5.14

This commit is contained in:
chfw 2019-02-21 08:22:12 +00:00
commit cb5bc7839d
7 changed files with 37 additions and 15 deletions

View File

@ -1,8 +1,13 @@
requires:
- type: git
url: https://github.com/moremoban/pypi-mobans
submodule: true
- https://github.com/pyexcel/pyexcel-mobans
configuration:
configuration_dir: "commons/config"
configuration_dir: "pyexcel-mobans:config"
template_dir:
- "commons/templates"
- "setupmobans/templates"
- "pyexcel-mobans:templates"
- "pypi-mobans:templates"
- ".moban.d"
configuration: pyexcel-io.yml
targets:
@ -12,7 +17,6 @@ targets:
- requirements.txt: requirements.txt.jj2
- "tests/requirements.txt": "tests/requirements.txt"
- LICENSE: NEW_BSD_LICENSE.jj2
- MANIFEST.in: MANIFEST.in.jj2
- test.sh: test.script.jj2
- test.bat: test.script.jj2
- README.rst: README.rst

View File

@ -1,7 +1,7 @@
Change log
================================================================================
0.5.13 - 21.02.2019
0.5.14 - 21.02.2019
--------------------------------------------------------------------------------
updated
@ -10,6 +10,15 @@ updated
#. `#65 <https://github.com/pyexcel/pyexcel-io/issues/65>`_: add
tests/__init__.py because python2.7 setup.py test needs it
0.5.13 - 12.02.2019
--------------------------------------------------------------------------------
updated
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#. `#63 <https://github.com/pyexcel/pyexcel-io/issues/63>`_: Version 0.5.12
prevents xslx and ods plugin from being loaded
0.5.12 - 9.02.2019
--------------------------------------------------------------------------------

View File

@ -3,3 +3,6 @@ include LICENSE
include CHANGELOG.rst
recursive-include tests *
recursive-include docs *
include docs/source/*
include Makefile
include test.sh

View File

@ -5,8 +5,14 @@ releases:
- action: updated
details:
- '`#65`: add tests/__init__.py because python2.7 setup.py test needs it'
version: 0.5.13
version: 0.5.14
date: 21.02.2019
- changes:
- action: updated
details:
- '`#63`: Version 0.5.12 prevents xslx and ods plugin from being loaded'
version: 0.5.13
date: 12.02.2019
- changes:
- action: updated
details:

View File

@ -26,9 +26,9 @@ project = 'pyexcel-io'
copyright = 'copyright 2015-2019 Onni Software Ltd.'
author = 'Onni Software Ltd.'
# The short X.Y version
version = '0.5.13'
version = '0.5.14'
# The full version, including alpha/beta/rc tags
release = '0.5.13'
release = '0.5.14'
# -- General configuration ---------------------------------------------------

View File

@ -2,10 +2,10 @@ overrides: "pyexcel.yaml"
project: "pyexcel-io"
name: pyexcel-io
nick_name: io
version: 0.5.13
current_version: 0.5.13
version: 0.5.14
current_version: 0.5.14
copyright_year: 2015-2019
release: 0.5.13
release: 0.5.14
dependencies:
- ordereddict;python_version<"2.7"
- lml>=0.0.4

View File

@ -29,7 +29,7 @@ except (ValueError, UnicodeError, locale.Error):
NAME = 'pyexcel-io'
AUTHOR = 'C.W.'
VERSION = '0.5.13'
VERSION = '0.5.14'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
@ -37,7 +37,7 @@ DESCRIPTION = (
'format and to/from databases'
)
URL = 'https://github.com/pyexcel/pyexcel-io'
DOWNLOAD_URL = '%s/archive/0.5.13.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.5.14.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'python',
@ -81,8 +81,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.13 ' +
"Find 0.5.13 in changelog for more details")
GS_COMMAND = ('gs pyexcel-io v0.5.14 ' +
"Find 0.5.14 in changelog for more details")
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
'Please install gease to enable it.')
UPLOAD_FAILED_MSG = (