mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
Python 3.8 support (#241)
* Add Python 3.8 test environment * Add Python 3.8 classifier * Update max compatible version of six to 1.13.0 * Update max compatible version of six to 1.14.0 * Add record to the changelog
This commit is contained in:
parent
ed8053fce1
commit
953f93631b
|
@ -31,6 +31,10 @@ matrix:
|
|||
env: TOXENV=py37
|
||||
sudo: required
|
||||
dist: xenial
|
||||
- python: 3.8
|
||||
env: TOXENV=py38
|
||||
sudo: required
|
||||
dist: xenial
|
||||
- python: pypy
|
||||
env: TOXENV=pypy
|
||||
notifications:
|
||||
|
|
|
@ -9,6 +9,9 @@ follows `Semantic versioning`_
|
|||
|
||||
Development version
|
||||
-------------------
|
||||
- Add Python 3.8 support.
|
||||
- Add support of six 1.14.0.
|
||||
- Add support of six 1.13.0.
|
||||
- Regenerate C sources using Cython 0.29.14.
|
||||
- Fix PEP257 doc block errors in example modules.
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
six>=1.7.0,<=1.12.0
|
||||
six>=1.7.0,<=1.14.0
|
||||
|
|
1
setup.py
1
setup.py
|
@ -84,6 +84,7 @@ setup(name='dependency-injector',
|
|||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Programming Language :: Python :: Implementation :: PyPy',
|
||||
'Topic :: Software Development',
|
||||
|
|
Loading…
Reference in New Issue
Block a user