Skip to content

Commit 63676c3

Browse files
committed
🥚 🎡 release 0.5.9
1 parent 8c25654 commit 63676c3

File tree

4 files changed

+40
-4
lines changed

4 files changed

+40
-4
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Upload Python Package
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up Python
13+
uses: actions/setup-python@v1
14+
with:
15+
python-version: '3.x'
16+
- name: Install dependencies
17+
run: |
18+
python -m pip install --upgrade pip
19+
pip install setuptools wheel twine
20+
- name: Build and publish
21+
env:
22+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
23+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
24+
run: |
25+
python setup.py sdist bdist_wheel
26+
twine upload dist/*

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change log
22
================================================================================
3+
0.5.9 - 29.08.2020
4+
--------------------------------------------------------------------------------
5+
6+
Added
7+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
38

9+
#. `pyexcel-xls#35 <https://github.com/pyexcel/pyexcel-xls/issues/35>`_, include
10+
tests
11+
412
0.5.8 - 22.08.2018
513
--------------------------------------------------------------------------------
614

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
include README.rst
22
include LICENSE
33
include CHANGELOG.rst
4+
recursive-include tests *
5+
recursive-include docs *

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111

1212
NAME = 'pyexcel-xls'
1313
AUTHOR = 'C.W.'
14-
VERSION = '0.5.8'
14+
VERSION = '0.5.9'
1515
1616
LICENSE = 'New BSD'
1717
DESCRIPTION = (
1818
'A wrapper library to read, manipulate and write data in xls format. It' +
1919
'reads xlsx and xlsm format'
2020
)
2121
URL = 'https://github.com/pyexcel/pyexcel-xls'
22-
DOWNLOAD_URL = '%s/archive/0.5.8.tar.gz' % URL
22+
DOWNLOAD_URL = '%s/archive/0.5.9.tar.gz' % URL
2323
FILES = ['README.rst', 'CHANGELOG.rst']
2424
KEYWORDS = [
2525
'xls',
@@ -55,8 +55,8 @@
5555
# You do not need to read beyond this line
5656
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5757
sys.executable)
58-
GS_COMMAND = ('gs pyexcel-xls v0.5.8 ' +
59-
"Find 0.5.8 in changelog for more details")
58+
GS_COMMAND = ('gs pyexcel-xls v0.5.9 ' +
59+
"Find 0.5.9 in changelog for more details")
6060
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
6161
'Please install gease to enable it.')
6262
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)