Skip to content

Commit e31fd93

Browse files
committed
Drop support for Python 3.7, 3.8, and 3.9
Python 3.7, 3.8, and 3.9 have all reached end-of-life. See https://devguide.python.org/versions/.
1 parent cb013ee commit e31fd93

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

.github/workflows/test_and_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55

66
pull_request:
7-
branches: [ 'develop' ]
7+
branches: ["develop"]
88

99
jobs:
1010
is-duplicate:
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
os: [ubuntu-latest, macos-latest, windows-latest]
34-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
34+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3535

3636
steps:
3737
- name: Check out code

setup.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,14 @@ classifiers =
2020
Natural Language :: English
2121
Programming Language :: C
2222
Programming Language :: Python :: 3 :: Only
23-
Programming Language :: Python :: 3.7
24-
Programming Language :: Python :: 3.8
25-
Programming Language :: Python :: 3.9
2623
Programming Language :: Python :: 3.10
2724
Programming Language :: Python :: 3.11
2825
Programming Language :: Python :: 3.12
2926
Programming Language :: Python :: 3.13
3027
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
3128

3229
[options]
33-
python_requires = >=3.7, <4
30+
python_requires = >=3.10, <4
3431

3532
[options.extras_require]
3633
examples =

tox.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ isolated_build = true
99
skip_missing_interpreters = true
1010

1111
envlist =
12-
py37
13-
py38
14-
py39
1512
py310
1613
py311
1714
py312

0 commit comments

Comments
 (0)