diff --git a/.travis.yml b/.travis.yml index e14b76f..9105783 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ python: - "2.7" - "3.6" - "3.7" +- "3.8" +- "3.9" script: - pytest deploy: diff --git a/README.md b/README.md index c96f770..6cc277d 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,7 @@ dc = DomainConnect( ## CHANGELOG | version | date | changes | | ------- | -----------| ------ | +| 0.0.8 | 2020-11-09 | NEW FEATURE: Detailed information on access token request fail | | 0.0.7 | 2019-10-29 | Bugfix: error when setting up .app domain | | 0.0.6 | 2019-07-05 | UPDATE: moved from pycrypto to cryptography (due to know security issues) | | 0.0.5 | 2019-03-12 | NEW FEATURE: url signing capability added | diff --git a/setup.py b/setup.py index b95416c..795678a 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name='domain_connect', - version='0.0.7', + version='0.0.8', description='Python client library for Domain Connect protocol. See: https://domainconnect.org', long_description_content_type="text/markdown", long_description=open('README.md').read(), @@ -11,9 +11,13 @@ author_email='pawel-kow@users.noreply.github.com', url='https://github.com/Domain-Connect/domainconnect_python', license='https://github.com/Domain-Connect/domainconnect_python/blob/master/LICENSE', + #python 3.5 failing in tests classifiers=[ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], packages=[ 'domainconnect',