Skip to content

Commit 63e8a64

Browse files
committed
Bump version 1.1.0 & build on py3.8
1 parent f1c74fc commit 63e8a64

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 1
1010
matrix:
11-
python-version: [3.6, 3.7]
11+
python-version: [3.6, 3.7, 3.8]
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up Python ${{ matrix.python-version }}
@@ -32,8 +32,8 @@ jobs:
3232
- name: Build python package
3333
run: |
3434
python setup.py sdist bdist_wheel
35-
- name: Trigger next workflow
36-
if: success() && startsWith(github.ref, 'refs/tags') && matrix.python-version == 3.7
35+
- name: Deploy to PyPI
36+
if: success() && startsWith(github.ref, 'refs/tags') && matrix.python-version == 3.8
3737
uses: pypa/gh-action-pypi-publish@master
3838
with:
3939
user: __token__

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.1
2+
current_version = 1.1.0
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
setup(
3232
name="shapash", # Replace with your own username
33-
version="1.0.1",
33+
version="1.1.0",
3434
python_requires='>3.5, < 3.9',
3535
url='https://github.com/MAIF/shapash',
3636
author="Yann Golhen, Sebastien Bidault, Yann Lagre, Maxime Gendre",

shapash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
__author__ = """Yann Golhen, Yann Lagré, Sebastien Bidault, Maxime Gendre, Thomas Bouche, Johann Martin"""
55
6-
__version__ = '1.0.1'
6+
__version__ = '1.1.0'

0 commit comments

Comments
 (0)