Skip to content

Commit 0339532

Browse files
authored
Drop support for EOL Python 3.6 and 3.7 (#14)
1 parent 9ec5409 commit 0339532

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,13 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
python-version:
36-
- "3.6"
37-
- "3.7"
3836
- "3.8"
3937
- "3.9"
4038
- "3.10"
4139
- "3.11"
42-
- "pypy-3.7"
4340
- "pypy-3.8"
4441
- "pypy-3.9"
45-
# 20.04 because https://github.com/actions/python-versions
46-
# does not have 3.6 binaries for 22.04.
47-
os: ["ubuntu-20.04"]
42+
os: ["ubuntu-22.04"]
4843
include:
4944
- { python-version: "3.12", os: "ubuntu-latest" }
5045
steps:

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ classifiers =
2828
Natural Language :: English
2929
Operating System :: OS Independent
3030
Programming Language :: Python :: 3
31-
Programming Language :: Python :: 3.6
32-
Programming Language :: Python :: 3.7
3331
Programming Language :: Python :: 3.8
3432
Programming Language :: Python :: 3.9
3533
Programming Language :: Python :: 3.10
@@ -41,7 +39,7 @@ classifiers =
4139
Topic :: Software Development :: Libraries :: Python Modules
4240

4341
[options]
44-
python_requires = >=3.6
42+
python_requires = >=3.8
4543
zip_safe = True
4644
setup_requires = setuptools
4745
install_requires =

tox.ini

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 3.5.0
33
envlist =
4-
py{36, 37, 38, 39, 310, 311, 312, py37, py38, py39}
4+
py{38, 39, 310, 311, 312, py38, py39}
55
cover, bandit, build
66
isolated_build = true
77
skip_missing_interpreters = true
@@ -39,13 +39,10 @@ commands =
3939

4040
[gh-actions]
4141
python =
42-
3.6: py36
43-
3.7: py37
4442
3.8: py38
4543
3.9: py39
4644
3.10: py310, cover, build, bandit
4745
3.11: py311
4846
3.12: py312
49-
pypy-3.7: pypy37
5047
pypy-3.8: pypy38
5148
pypy-3.9: pypy39

0 commit comments

Comments
 (0)