From dc11cf50efa5ea4da7b90994ca1abfe1428db13d Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 15 Oct 2021 13:01:16 +0200 Subject: [PATCH 1/2] Add Python 3.10 to the testing --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 65640995e..2a2cd5a1f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 From d5a7db3ccea257a041ed50803b7a1a832c546e7e Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 15 Oct 2021 13:09:17 +0200 Subject: [PATCH 2/2] Programming Language :: Python :: 3.10 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index c715ed4bd..e7cb984da 100644 --- a/setup.py +++ b/setup.py @@ -78,5 +78,6 @@ setup( "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], )