diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 90e5905a..47c6fdb7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,10 @@ +1.11.0 (2021-11-04) +=================== + +- Support Python 3.11 +- Support ``NO_COLOR`` environment variable +- Update vendored apipkg: 1.5 => 2.0 + 1.10.0 (2020-12-12) =================== diff --git a/setup.py b/setup.py index 5e2e0a8c..5948ef00 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def main(): url='https://py.readthedocs.io/', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', author='holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others', author_email='pytest-dev@python.org', classifiers=['Development Status :: 6 - Mature', @@ -30,6 +30,9 @@ def main(): 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ],