Skip to content

Commit c7be924

Browse files
nyukhalovalistair23
authored andcommitted
Update the python version range to 3.8-3.10
1 parent d64064d commit c7be924

2 files changed

Lines changed: 7 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
max-parallel: 4
1414
fail-fast: false
1515
matrix:
16-
python-version: ['3.5', '3.6', '3.7', '3.8']
16+
python-version: ['3.8', '3.9', '3.10']
1717
steps:
1818
- uses: actions/checkout@v1
1919
- name: Set up Python ${{ matrix.python-version }}
@@ -25,4 +25,4 @@ jobs:
2525
python -m pip install --upgrade pip
2626
python -m pip install tox tox-gh-actions
2727
- name: Test with tox
28-
run: tox
28+
run: tox

tox.ini

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,28 @@
11
[tox]
22
envlist =
3-
check{36,38},
4-
py{35,36,37,38},
3+
py{38,39,310},
54
coverage
65

76
[gh-actions]
87
python =
9-
3.5: py35
10-
3.6: py36
11-
3.7: py37
128
3.8: py38
9+
3.9: py39
10+
3.10: py310
1311

1412
[testenv]
1513
usedevelop = true
1614
setenv =
1715
COVERAGE_FILE={toxinidir}/.coverage_{envname}
1816
deps =
1917
pdbpp==0.9.6
20-
pytest==3.10.1
21-
pytest-cov==2.6.1
18+
pytest==7.1.2
19+
pytest-cov==3.0.0
2220
whitelist_externals =
2321
rm
2422
commands =
2523
rm -vf {toxinidir}/.coverage_{envname}
2624
pytest --cov-report= --cov=obd {posargs}
2725

28-
[testenv:check36]
29-
basepython = python3.6
30-
skipsdist = true
31-
32-
3326
[testenv:coverage]
3427
skipsdist = true
3528
deps =

0 commit comments

Comments
 (0)