File tree Expand file tree Collapse file tree 4 files changed +40
-4
lines changed Expand file tree Collapse file tree 4 files changed +40
-4
lines changed Original file line number Diff line number Diff line change
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/*
Original file line number Diff line number Diff line change 1
1
Change log
2
2
================================================================================
3
+ 0.5.9 - 29.08.2020
4
+ --------------------------------------------------------------------------------
5
+
6
+ Added
7
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
8
9
+ #. `pyexcel-xls#35 <https://github.com/pyexcel/pyexcel-xls/issues/35 >`_, include
10
+ tests
11
+
4
12
0.5.8 - 22.08.2018
5
13
--------------------------------------------------------------------------------
6
14
Original file line number Diff line number Diff line change 1
1
include README.rst
2
2
include LICENSE
3
3
include CHANGELOG.rst
4
+ recursive-include tests *
5
+ recursive-include docs *
Original file line number Diff line number Diff line change 11
11
12
12
NAME = 'pyexcel-xls'
13
13
AUTHOR = 'C.W.'
14
- VERSION = '0.5.8 '
14
+ VERSION = '0.5.9 '
15
15
16
16
LICENSE = 'New BSD'
17
17
DESCRIPTION = (
18
18
'A wrapper library to read, manipulate and write data in xls format. It' +
19
19
'reads xlsx and xlsm format'
20
20
)
21
21
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
23
23
FILES = ['README.rst' , 'CHANGELOG.rst' ]
24
24
KEYWORDS = [
25
25
'xls' ,
55
55
# You do not need to read beyond this line
56
56
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi' .format (
57
57
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" )
60
60
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
61
61
'Please install gease to enable it.' )
62
62
UPLOAD_FAILED_MSG = (
You can’t perform that action at this time.
0 commit comments