From 2ab371a3f88578835581bf709f0e9698c23f30b5 Mon Sep 17 00:00:00 2001 From: Jay Bazuzi Date: Tue, 11 Jul 2023 20:03:33 -0700 Subject: [PATCH 1/2] F** Add Python 3.10 and 3.11 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 80f6365..fa56ce1 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,8 @@ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Testing", "Topic :: Utilities", From b9847b2eba5064b0e06ae0389cf0c1f74852edcc Mon Sep 17 00:00:00 2001 From: Jay Bazuzi Date: Tue, 11 Jul 2023 20:04:45 -0700 Subject: [PATCH 2/2] e - add supported Python versions to CI --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e37cb9..94b35a4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.9] + python-version: ["3.8","3.9","3.10","3.11"] os: [macos-latest, ubuntu-latest, windows-latest] steps: