summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2021-10-18 18:48:23 +0300
committerGitHub <noreply@github.com>2021-10-18 21:48:23 +0600
commit98de462d3c32747cee24b17cfef206cb9dd38e88 (patch)
tree5f4766f6224dc0daaa8c91aeb3efdb0717c4567f
parent98620ab2a396a5c887a494259d49552c2093e1ad (diff)
downloadpyjwt-98de462d3c32747cee24b17cfef206cb9dd38e88.tar.gz
Add support for Python 3.10 (#699)
-rw-r--r--.github/workflows/main.yml2
-rw-r--r--setup.cfg1
-rw-r--r--tox.ini1
3 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 77762fb..a110e2c 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
platform: ["ubuntu-latest", "windows-latest"]
- 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"
diff --git a/setup.cfg b/setup.cfg
index 2a8cf59..62798cb 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -27,6 +27,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
+ Programming Language :: Python :: 3.10
Topic :: Utilities
[options]
diff --git a/tox.ini b/tox.ini
index 2f2ee59..d366461 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,6 +12,7 @@ python =
3.7: py37, docs
3.8: py38, typing
3.9: py39
+ 3.10: py310
[tox]