diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 17d3c9e1..e3fbcb22 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: run: | python setup.py sdist bdist_wheel - name: Deploy to PyPI - if: success() && startsWith(github.ref, 'refs/tags') && matrix.python-version == 3.8 + if: success() && startsWith(github.ref, 'refs/tags') && matrix.python-version == 3.9 uses: pypa/gh-action-pypi-publish@master with: user: __token__ diff --git a/setup.cfg b/setup.cfg index a6b0698a..53a261ca 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.1 +current_version = 1.4.2 commit = True tag = True diff --git a/setup.py b/setup.py index dc550a79..44df49a9 100644 --- a/setup.py +++ b/setup.py @@ -50,8 +50,8 @@ setup( name="shapash", - version="1.4.1", - python_requires='>3.5, <=3.9', + version="1.4.2", + python_requires='>3.5, <3.10', url='https://github.com/MAIF/shapash', author="Yann Golhen, Sebastien Bidault, Yann Lagre, Maxime Gendre", author_email="yann.golhen@maif.fr", diff --git a/shapash/__init__.py b/shapash/__init__.py index 96135418..9e343c6b 100644 --- a/shapash/__init__.py +++ b/shapash/__init__.py @@ -3,4 +3,4 @@ __author__ = """Yann Golhen, Yann Lagré, Sebastien Bidault, Maxime Gendre, Thomas Bouche, Johann Martin""" __email__ = 'yann.golhen@maif.fr, yann.lagre@maif.fr, sebabstien.bidault@maif.fr, maxime.gendre@maif.fr' -__version__ = '1.4.1' +__version__ = '1.4.2'