Skip to content

Commit 8def478

Browse files
committed
Drop python 3.7 support
1 parent fafa56a commit 8def478

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
# Python 3.6 is not supported by ubuntu-latest
13-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
12+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1413

1514
steps:
1615
- uses: actions/checkout@v4

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@
3434
"Programming Language :: Python :: 3",
3535

3636
# Specifically, we support the following releases.
37-
"Programming Language :: Python :: 3.6",
38-
"Programming Language :: Python :: 3.7",
3937
"Programming Language :: Python :: 3.8",
4038
"Programming Language :: Python :: 3.9",
4139
"Programming Language :: Python :: 3.10",

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
env_list = py36, py37, py38, py39, py310, py311, py312, py313
7+
env_list = py38, py39, py310, py311, py312, py313
88

99
[testenv]
1010
commands =
1111
pytest --cov=lib
1212
deps =
13+
pip
1314
pytest-cov
1415
# This needs to be set to include the test fixtures
1516
use_develop = true
1617

1718
[gh]
19+
# Maps python versions for GitHub workflow
1820
python =
19-
3.6: py36
20-
3.7: py37
2121
3.8: py38
2222
3.9: py39
2323
3.10: py310

0 commit comments

Comments
 (0)