Skip to content

Commit 79c54ba

Browse files
committed
Give py2 support a brief stay of execution
As requested by @reaperhulk on IRC
1 parent f3acdde commit 79c54ba

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ jobs:
1010
matrix:
1111
PYTHON:
1212
# Base builds
13+
- {VERSION: "2.7", TOXENV: "py27"}
1314
- {VERSION: "3.6", TOXENV: "py36"}
1415
- {VERSION: "3.7", TOXENV: "py37"}
1516
- {VERSION: "3.8", TOXENV: "py38"}
1617
- {VERSION: "3.9", TOXENV: "py39"}
18+
- {VERSION: "pypy2", TOXENV: "pypy"}
1719
- {VERSION: "pypy3", TOXENV: "pypy3"}
1820
# -cryptographyMain
1921
- {VERSION: "3.6", TOXENV: "py36-cryptographyMain"}
@@ -22,12 +24,15 @@ jobs:
2224
- {VERSION: "3.9", TOXENV: "py39-cryptographyMain"}
2325
- {VERSION: "pypy3", TOXENV: "pypy3-cryptographyMain"}
2426
# -cryptographyMinimum
27+
- {VERSION: "2.7", TOXENV: "py27-cryptographyMinimum"}
2528
- {VERSION: "3.6", TOXENV: "py36-cryptographyMinimum"}
2629
- {VERSION: "3.7", TOXENV: "py37-cryptographyMinimum"}
2730
- {VERSION: "3.8", TOXENV: "py38-cryptographyMinimum"}
2831
- {VERSION: "3.9", TOXENV: "py39-cryptographyMinimum"}
32+
- {VERSION: "pypy2", TOXENV: "pypy-cryptographyMinimum"}
2933
- {VERSION: "pypy3", TOXENV: "pypy3-cryptographyMinimum"}
3034
# Random order
35+
- {VERSION: "2.7", TOXENV: "py27-randomorder"}
3136
- {VERSION: "3.9", TOXENV: "py39-randomorder"}
3237
# Downstreams
3338
- {VERSION: "3.7", TOXENV: "py37-twistedTrunk"}

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {pypy3,py36,py37,py38,py39}{,-cryptographyMain,-cryptographyMinimum}{,-randomorder},py37-twistedTrunk,pypi-readme,check-manifest,flake8,docs,coverage-report
2+
envlist = {pypy,pypy3,py27,py36,py37,py38,py39}{,-cryptographyMain,-cryptographyMinimum}{,-randomorder},py37-twistedTrunk,pypi-readme,check-manifest,flake8,docs,coverage-report
33

44
[testenv]
55
whitelist_externals =

0 commit comments

Comments
 (0)