Skip to content

Commit 8229a4e

Browse files
committed
Add Python 3.7 as supported platform
1 parent 91fac49 commit 8229a4e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.8, 3.9, "3.10"]
13+
python-version: [3.7, 3.8, 3.9, "3.10"]
1414
tox-version: [3, 4]
1515

1616
steps:

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ ignore =
55
max-line-length = 88
66

77
[tox]
8-
envlist = py{38,39,310}-tox{3,4}, lint
8+
envlist = py3{7,8,9,10}-tox{3,4}, lint
99
passenv = LD_PRELOAD
1010
isolated_build = True
1111

1212
[testenv]
1313
groups = test
14-
deps =
15-
tox4: tox>=4.0.0b2
16-
commands =
14+
commands_pre =
15+
tox4: pip install tox>=4.0.0b2
16+
commands =
1717
tox --version
1818
test {posargs}
1919

0 commit comments

Comments
 (0)