From 02bb2009cda3814c5cbaddc5b4a466bd0067dbdc Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 12 Oct 2021 03:40:28 +0300 Subject: [PATCH] Add support for Python 3.10 (#6079) --- .github/workflows/ci.yml | 4 ++-- CHANGES/6079.feature | 1 + CONTRIBUTORS.txt | 1 + setup.py | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 CHANGES/6079.feature 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/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`. 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",