aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2019-12-09 12:42:55 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2019-12-08 23:42:55 -0500
commitd75335a7de77d4294bea29d03928229a83a77493 (patch)
tree88274e2e17fc56da11298758308dd3eecbb8b6be /tox.ini
parent1340c0080c750867297b3f20bbecbad707c18157 (diff)
downloadcryptography-d75335a7de77d4294bea29d03928229a83a77493.tar.gz
cryptography-d75335a7de77d4294bea29d03928229a83a77493.tar.bz2
cryptography-d75335a7de77d4294bea29d03928229a83a77493.zip
drop python 3.4 support (#5087)
* drop python 3.4 support Our dependencies have started dropping support so it is becoming difficult to test. Additionally, Python 3.4 represents <2% of our downloads, so taking on a large maintenance burden to maintain support isn't a good use of limited time. Accordingly, we're dropping testing infrastructure and migrating our abi3 wheels to py35+. * use removed instead of dropped
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 6c414973..ee7793f8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 2.4
-envlist = py27,pypy,py34,py35,py36,py37,py38,docs,pep8,packaging
+envlist = py27,pypy,py35,py36,py37,py38,docs,pep8,packaging
isolated_build = True
[testenv]
@@ -18,7 +18,7 @@ setenv =
commands =
pip list
# We use parallel mode and then combine here so that coverage.py will take
- # the paths like .tox/py34/lib/python3.4/site-packages/cryptography/__init__.py
+ # the paths like .tox/py38/lib/python3.8/site-packages/cryptography/__init__.py
# and collapse them into src/cryptography/__init__.py.
coverage run --parallel-mode -m pytest --capture=no --strict {posargs}
coverage combine