From e68532e9d67b089b17f1c96a708ff5f8ccf8bc8b Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Thu, 14 Oct 2021 11:57:24 +0300 Subject: [PATCH 1/5] Update CHANGELOG for 1.11.0 --- CHANGELOG.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 90e5905a..77e63459 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,10 @@ +1.11.0 (2021-10-XX) +=================== + +- Support Python 3.11 +- Support ``NO_COLOR`` environment variable +- Update vendored apipkg: 1.5 => 2.0 + 1.10.0 (2020-12-12) =================== From d831150a3502363c9ca7242122d8e6cbd229169e Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Thu, 14 Oct 2021 12:05:16 +0300 Subject: [PATCH 2/5] Update python_requires: Python 3.4 was already dropped --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5e2e0a8c..ddc3ddf8 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', From 9cf613f3c21ca31f4a1ee9a70e6bd31dc3fe42d9 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Thu, 14 Oct 2021 12:06:08 +0300 Subject: [PATCH 3/5] Declare support for Python 3.8-3.10 --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index ddc3ddf8..5948ef00 100644 --- a/setup.py +++ b/setup.py @@ -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', ], From 6d003d9fee08542b9a5ca663568cb30c75d6c27c Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Thu, 4 Nov 2021 18:06:28 +0100 Subject: [PATCH 4/5] Update CHANGELOG.rst --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 77e63459..73326401 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,4 +1,4 @@ -1.11.0 (2021-10-XX) +1.11.0 (2021-11.04) =================== - Support Python 3.11 From 447bac514febbb5433963582103d48bb27b3db17 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Thu, 4 Nov 2021 18:11:50 +0100 Subject: [PATCH 5/5] Update CHANGELOG.rst Co-authored-by: Hugo van Kemenade --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 73326401..47c6fdb7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,4 +1,4 @@ -1.11.0 (2021-11.04) +1.11.0 (2021-11-04) =================== - Support Python 3.11