From 4d984d308405bc08953caac5c949725ee28cd736 Mon Sep 17 00:00:00 2001 From: Hamid FzM Date: Tue, 31 Mar 2020 00:00:31 +0430 Subject: [PATCH] Fix publish github action --- .github/workflows/publish.yml | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d3eb638..b2bb373 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,8 +41,8 @@ jobs: - name: Generate distribution 📦for PyPI run: | - python setup.py sdist - python setup.py bdist_wheel + pip install wheel + python setup.py sdist bdist_wheel - name: Publish distribution to PyPI uses: pypa/gh-action-pypi-publish@master diff --git a/setup.py b/setup.py index 5c9fefb..cf98c1d 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='Flask-HTMLmin', - version='2.0.1', + version='2.0.2', url='https://github.com/hamidfzm/Flask-HTMLmin', license='BSD-3-Clause', author='Hamid FzM',