🥚 🎡 release 0.5.9

This commit is contained in:
chfw 2020-08-29 23:38:27 +01:00
parent 8c2565485d
commit 63676c382b
4 changed files with 40 additions and 4 deletions

26
.github/workflows/pythonpublish.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Upload Python Package
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*

View File

@ -1,6 +1,14 @@
Change log
================================================================================
0.5.9 - 29.08.2020
--------------------------------------------------------------------------------
Added
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#. `pyexcel-xls#35 <https://github.com/pyexcel/pyexcel-xls/issues/35>`_, include
tests
0.5.8 - 22.08.2018
--------------------------------------------------------------------------------

View File

@ -1,3 +1,5 @@
include README.rst
include LICENSE
include CHANGELOG.rst
recursive-include tests *
recursive-include docs *

View File

@ -11,7 +11,7 @@ PY26 = PY2 and sys.version_info[1] < 7
NAME = 'pyexcel-xls'
AUTHOR = 'C.W.'
VERSION = '0.5.8'
VERSION = '0.5.9'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
@ -19,7 +19,7 @@ DESCRIPTION = (
'reads xlsx and xlsm format'
)
URL = 'https://github.com/pyexcel/pyexcel-xls'
DOWNLOAD_URL = '%s/archive/0.5.8.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.5.9.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'xls',
@ -55,8 +55,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-xls v0.5.8 ' +
"Find 0.5.8 in changelog for more details")
GS_COMMAND = ('gs pyexcel-xls v0.5.9 ' +
"Find 0.5.9 in changelog for more details")
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
'Please install gease to enable it.')
UPLOAD_FAILED_MSG = (