From cc1ba557aceb13bab74e6dda8adbf4345040cae8 Mon Sep 17 00:00:00 2001 From: ted Date: Thu, 24 Mar 2022 09:31:18 -0700 Subject: [PATCH] add py 3.10 support --- .github/workflows/pythonpackage.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 4f8ce58..46fc2b4 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9] + python-version: [3.8, 3.9, 3.10] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index e883675..041fad6 100644 --- a/setup.py +++ b/setup.py @@ -64,5 +64,6 @@ def find_version(*file_paths): 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Internet :: WWW/HTTP'])