Skip to content

Commit d14768d

Browse files
committed
Drop support for Python 3.9
1 parent 15eff0d commit d14768d

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
matrix:
2222
# Test all supported versions on Ubuntu:
2323
os: [ubuntu-latest, ubuntu-24.04-arm]
24-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
24+
python: ["3.10", "3.11", "3.12", "3.13"]
2525
experimental: [false]
2626
build: ['']
2727
include:
@@ -45,9 +45,6 @@ jobs:
4545
- os: ubuntu-latest
4646
python: pypy-3.10
4747
experimental: false
48-
- os: ubuntu-latest
49-
python: pypy-3.9
50-
experimental: false
5148
- os: macos-latest
5249
python: "3.13"
5350
experimental: true

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ description = "Python benchmark suite"
4848
readme = "README.rst"
4949
license = { text = "MIT" }
5050
authors = [ { name = "Collin Winter" }, { name = "Jeffrey Yasskin" } ]
51-
requires-python = ">=3.9"
51+
requires-python = ">=3.10"
5252
classifiers = [
5353
"Development Status :: 5 - Production/Stable",
5454
"Intended Audience :: Developers",
@@ -57,7 +57,6 @@ classifiers = [
5757
"Operating System :: OS Independent",
5858
"Programming Language :: Python",
5959
"Programming Language :: Python :: 3 :: Only",
60-
"Programming Language :: Python :: 3.9",
6160
"Programming Language :: Python :: 3.10",
6261
"Programming Language :: Python :: 3.11",
6362
"Programming Language :: Python :: 3.12",
@@ -109,7 +108,7 @@ lint.ignore = [
109108
max_supported_python = "3.14"
110109

111110
[tool.mypy]
112-
python_version = "3.9"
111+
python_version = "3.10"
113112
pretty = true
114113
enable_error_code = "ignore-without-code"
115114
disallow_any_generics = true

0 commit comments

Comments
 (0)