Skip to content

Commit

Permalink
Merge branch 'release/v0.7.2'
Browse files Browse the repository at this point in the history
0.7.2 (2021-04-01)
------------------

* change python_requires to ">=3.7# abandonne la validation.
  • Loading branch information
Zepmanbc committed Apr 1, 2021
2 parents bc45241 + 3ad7ebf commit 876f56d
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 22 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
History
=======

0.7.2 (2021-04-01)
------------------

* change python_requires to ">=3.7"

0.7.1 (2021-03-23)
------------------

Expand Down
2 changes: 1 addition & 1 deletion creopyson/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Benjamin C."""
__email__ = "[email protected]"
__version__ = "__version__ = '0.7.1'"
__version__ = "__version__ = '0.7.2'"

from creopyson.connection import Client
from creopyson.objects import jlpoint
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 = 0.7.1
current_version = 0.7.2
commit = True
tag = False

Expand Down
46 changes: 26 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,42 +5,48 @@

from setuptools import setup, find_packages

with open('README.rst') as readme_file:
with open("README.rst") as readme_file:
readme = readme_file.read()

with open('HISTORY.rst') as history_file:
with open("HISTORY.rst") as history_file:
history = history_file.read()

requirements = ['requests']
requirements = ["requests"]

setup_requirements = ['pytest-runner', ]
setup_requirements = [
"pytest-runner",
]

test_requirements = ['pytest', ]
test_requirements = [
"pytest",
]

setup(
author="Benjamin C.",
author_email='[email protected]',
author_email="[email protected]",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
description="Python library for Creoson",
install_requires=requirements,
license="MIT license",
long_description=readme + '\n\n' + history,
long_description=readme + "\n\n" + history,
include_package_data=True,
keywords='creopyson',
name='creopyson',
packages=find_packages(include=['creopyson']),
python_requires='==3.7.*',
keywords="creopyson",
name="creopyson",
packages=find_packages(include=["creopyson"]),
python_requires=">=3.7",
setup_requires=setup_requirements,
test_suite='tests',
test_suite="tests",
tests_require=test_requirements,
url='https://github.com/Zepmanbc/creopyson',
version='0.7.1',
url="https://github.com/Zepmanbc/creopyson",
version="version='0.7.2'",
zip_safe=False,
)

0 comments on commit 876f56d

Please sign in to comment.