summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMichael K <michael-k@users.noreply.github.com>2020-10-09 10:58:38 +0000
committerGitHub <noreply@github.com>2020-10-09 16:58:38 +0600
commit4ed3067297a0fbe5ed61f54aa9201a4ce82f18ff (patch)
tree928e024aa4816bd8ec1387aba6f98da73959dc48 /setup.cfg
parent201455e9210a6c0edb1c77c5a3dcffe22d952d9a (diff)
downloadpyjwt-4ed3067297a0fbe5ed61f54aa9201a4ce82f18ff.tar.gz
Run tests against Python 3.9 and add trove classifier (#522)
* Run tests against Python 3.9 and add trove classifier * Loosen pin on cryptography to allow 3.x
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 55e0edf..ca8322c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -26,6 +26,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
Topic :: Utilities
[options]
@@ -38,7 +39,7 @@ docs =
sphinx-rtd-theme
zope.interface
crypto =
- cryptography>=2.6,<3.0.0
+ cryptography>=2.6,<4.0.0
tests =
pytest>=6.0.0,<7.0.0
coverage[toml]==5.0.4
@@ -47,7 +48,7 @@ dev =
sphinx
sphinx-rtd-theme
zope.interface
- cryptography>=2.6,<3.0.0
+ cryptography>=2.6,<4.0.0
pytest>=6.0.0,<7.0.0
coverage[toml]==5.0.4
requests