Skip to content

Commit

Permalink
Bump version, remove py34 35
Browse files Browse the repository at this point in the history
  • Loading branch information
chocobn69 committed Jul 13, 2021
1 parent 80f5470 commit 28faeea
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 9 deletions.
7 changes: 4 additions & 3 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ Credits
Development Lead
----------------

* Quentin Vaudaine
* Boguta Maxime
* Nicolas Baccelli

Contributors
------------

* Nicolas Baccelli
* Jocelyn Griselle
* Salem Harrache
* Quentin Vaudaine
* Boguta Maxime
* Nicolas Baccelli
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
Shiba : Python API for PriceMinister WebServices
================================================

Version 1.2.0
-------------------

Released on XXX 2021

- Reformat code using `black`
- Compatibility to python 3.9
- Removes python 3.4, 3.5

Version 1.1.12
-------------------

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ init: ## Install the project in development mode (using virtualenv is highly re
# Useful to build the documentation
pip install sphinx sphinx-readable-theme
# Useful for dev
pip install tox ipdb jedi pytest pytest-cov flake8 wheel bumpversion httpie
pip install tox ipdb jedi pytest pytest-cov flake8 wheel bumpversion httpie black

clean: clean-build clean-pyc clean-test ## Remove all build, test, coverage and Python artifacts

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Shiba
=====

**Shiba** is a Python package that provides interfaces to **PriceMinister Web services**. Currently, all features works
with *Python3.x*. (3.4, 3.5, 3.6, 3.7)
with *Python3.x*. (3.6, 3.7, 3.8, 3.9)

Shiba supports all the Web services introduced by the *PriceMinister developper blog*.

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 1.1.12
current_version = 1.2.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+\d+))?
serialize =
{major}.{minor}.{patch}.{release}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def read(fname):

setup(
name="Shiba",
author="Maxime Boguta",
author_email="[email protected]",
author="Nicolas Baccelli",
author_email="[email protected]",
version=version,
url="https://github.com/ShibaAPI/shiba",
packages=["shiba"],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py34, py35, py36, py37
envlist = py36, py37, py38, py39

[testenv]
passenv = LC_ALL LANG HOME TRAVIS SHIBA_API_PASSWORD SHIBA_API_LOGIN
Expand Down

0 comments on commit 28faeea

Please sign in to comment.