Skip to content

Commit

Permalink
Merge pull request #217 from ThibaudReal/bump_version
Browse files Browse the repository at this point in the history
Fix python required version
  • Loading branch information
yg79 authored Jun 18, 2021
2 parents 30ddd47 + c4873d8 commit ed10c6e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.1
current_version = 1.4.2
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion shapash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

__author__ = """Yann Golhen, Yann Lagré, Sebastien Bidault, Maxime Gendre, Thomas Bouche, Johann Martin"""
__email__ = '[email protected], [email protected], [email protected], [email protected]'
__version__ = '1.4.1'
__version__ = '1.4.2'

0 comments on commit ed10c6e

Please sign in to comment.