From 63676c382b76eb9d847cc30ec032f3aafd059fce Mon Sep 17 00:00:00 2001 From: chfw Date: Sat, 29 Aug 2020 23:38:27 +0100 Subject: [PATCH] :egg: :ferris_wheel: release 0.5.9 --- .github/workflows/pythonpublish.yml | 26 ++++++++++++++++++++++++++ CHANGELOG.rst | 8 ++++++++ MANIFEST.in | 2 ++ setup.py | 8 ++++---- 4 files changed, 40 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/pythonpublish.yml diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml new file mode 100644 index 0000000..9e7ec42 --- /dev/null +++ b/.github/workflows/pythonpublish.yml @@ -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/* diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e4677db..bca579a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Change log ================================================================================ +0.5.9 - 29.08.2020 +-------------------------------------------------------------------------------- +Added +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. `pyexcel-xls#35 `_, include +tests + 0.5.8 - 22.08.2018 -------------------------------------------------------------------------------- diff --git a/MANIFEST.in b/MANIFEST.in index c2e4b1b..b1bf562 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,5 @@ include README.rst include LICENSE include CHANGELOG.rst +recursive-include tests * +recursive-include docs * diff --git a/setup.py b/setup.py index 92b2a0e..a10a4ba 100644 --- a/setup.py +++ b/setup.py @@ -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 = (