Skip to content

Commit 21478a7

Browse files
authored
Remove Python 3.7 support, add Python 3.13 support (#214)
1 parent 4b7c6d1 commit 21478a7

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/ci.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,8 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
32+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
3333
os: [Ubuntu, macOS, Windows]
34-
exclude:
35-
- os: "macOS"
36-
python-version: "3.7" # Not available on latest MacOS images
3734

3835
steps:
3936
- uses: actions/checkout@v4

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
nox.options.reuse_existing_virtualenvs = True
77

88

9-
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3"])
9+
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3"])
1010
def test(session: nox.Session) -> None:
1111
session.install("-r", "dev-requirements.txt")
1212
session.install(".")

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
]
1010
readme = "README.rst"
1111
license = {file = "LICENSE"}
12-
requires-python = ">=3.7"
12+
requires-python = ">=3.8"
1313
dependencies = []
1414
classifiers = [
1515
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)