From 9b8e2b837f274585510fa7a405d995b4def88080 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 11 Oct 2021 20:57:01 +0300 Subject: [PATCH 1/2] Add support for Python 3.10 --- .github/workflows/ci.yml | 4 ++-- CONTRIBUTORS.txt | 1 + setup.py | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cba1198ecb9..6ce6a67adfa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -176,7 +176,7 @@ jobs: name: Linux strategy: matrix: - pyver: [cp37-cp37m, cp38-cp38, cp39-cp39] + pyver: [cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310] arch: [x86_64, aarch64, i686, ppc64le, s390x] fail-fast: false runs-on: ubuntu-latest @@ -224,7 +224,7 @@ jobs: name: Binary wheels strategy: matrix: - pyver: [3.7, 3.8, 3.9] + pyver: [3.7, 3.8, 3.9, '3.10'] os: [macos, windows] arch: [x86, x64] exclude: diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 45d9a1a5fb5..f94ab0f7438 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -135,6 +135,7 @@ Hrishikesh Paranjape Hu Bo Hugh Young Hugo Herter +Hugo van Kemenade Hynek Schlawack Igor Alexandrov Igor Davydenko diff --git a/setup.py b/setup.py index 54b548c7b44..d9c7ef68a04 100644 --- a/setup.py +++ b/setup.py @@ -79,6 +79,7 @@ def read(f): "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Development Status :: 5 - Production/Stable", "Operating System :: POSIX", "Operating System :: MacOS :: MacOS X", From ba1fdea822cc5309b0e49e3ac77e4d7e9a07945d Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 11 Oct 2021 22:05:24 +0300 Subject: [PATCH 2/2] Add news fragment --- CHANGES/6079.feature | 1 + 1 file changed, 1 insertion(+) create mode 100644 CHANGES/6079.feature diff --git a/CHANGES/6079.feature b/CHANGES/6079.feature new file mode 100644 index 00000000000..25dc6039b44 --- /dev/null +++ b/CHANGES/6079.feature @@ -0,0 +1 @@ +Add Trove classifier and create binary wheels for 3.10. -- :user:`hugovk`.