summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorjason <jason@zzq.org>2021-02-08 14:22:26 -0700
committerAsif Saif Uddin <auvipy@gmail.com>2021-02-10 19:05:47 +0600
commit637c8945f2ba1481927478db7d1fa09de43c265b (patch)
tree67e638487090acc01de8ba24f8698a01567c2e48 /tox.ini
parentd54965b86ce4ede956db70baff0b3d5e9182a007 (diff)
downloadoauthlib-637c8945f2ba1481927478db7d1fa09de43c265b.tar.gz
Remove python 3.5 support; add python 3.8 support
- Python 3.5 has reached end-of-life. - Add support for Python 3.8 - Move dist to bionic (xenial is EOL in April) - Upgrade pip in travis.yml's `before_install`. this should install a wheel for pyca/cryptography - Install rust for pypy builds. It is a requirement for cryptography as no pypy wheels exist.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 4 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index aad4538..deb7cc7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py35,py36,py37,pypy,pypy3,docs,readme,bandit,isort
+envlist = py36,py37,py38,pypy,pypy3,docs,readme,bandit,isort
[testenv]
deps=
@@ -22,21 +22,21 @@ commands=make clean html
# tox -e readme to mimick PyPI long_description check
[testenv:readme]
-basepython=python3.7
+basepython=python3.8
deps=twine>=1.12.0
whitelist_externals=echo
commands=
twine check dist/*
[testenv:bandit]
-basepython=python3.7
+basepython=python3.8
skipsdist=True
deps=bandit
commands=bandit -b bandit.json -r oauthlib/
whitelist_externals=bandit
[testenv:isort]
-basepython = python3.7
+basepython = python3.8
usedevelop = false
deps = isort
changedir = {toxinidir}