Skip to content

Commit 010bd92

Browse files
committed
deprecate py34, py35, py36, py37, add py39, py310, py311 to CI
1 parent f9f599f commit 010bd92

File tree

2 files changed

+2
-19
lines changed

2 files changed

+2
-19
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python: [3.5, 3.6, 3.7, 3.8]
10+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Setup Python

tox.ini

+1-18
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py34, py35, py36, py34-linux-package, py35-linux-package, py36-linux-package, docs
7+
envlist = py36, py36-linux-package, docs
88

99
[testenv]
1010
setenv =
@@ -22,23 +22,6 @@ deps =
2222
httpretty>=0.8.14
2323
commands = py.test
2424

25-
[testenv:py34-linux-package]
26-
basepython = python3.4
27-
deps =
28-
pex
29-
wheel
30-
commands =
31-
/bin/bash -c 'pex . -r <(pip freeze) --disable-cache --python-shebang="/usr/bin/env python3" -o stacks_py34_linux.pex -c stacks'
32-
33-
[testenv:py35-linux-package]
34-
basepython = python3.5
35-
36-
deps =
37-
pex
38-
wheel
39-
commands =
40-
/bin/bash -c 'pex . -r <(pip freeze) --disable-cache --python-shebang="/usr/bin/env python3" -o stacks_py35_linux.pex -c stacks'
41-
4225
[testenv:py36-linux-package]
4326
basepython = python3.6
4427

0 commit comments

Comments
 (0)