Skip to content

Commit 480fbb7

Browse files
authored
Drop support for Python 3.9, test PyPy3.11 instead of PyPy3.10 (python#414)
1 parent 354b293 commit 480fbb7

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 5 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:
@@ -43,10 +43,7 @@ jobs:
4343
build: 'free-threading'
4444
# Also test PyPy, macOS, and Windows:
4545
- os: ubuntu-latest
46-
python: pypy-3.10
47-
experimental: false
48-
- os: ubuntu-latest
49-
python: pypy-3.9
46+
python: pypy-3.11
5047
experimental: false
5148
- os: macos-latest
5249
python: "3.13"

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",
@@ -113,7 +112,7 @@ lint.ignore = [
113112
max_supported_python = "3.14"
114113

115114
[tool.mypy]
116-
python_version = "3.9"
115+
python_version = "3.10"
117116
pretty = true
118117
enable_error_code = "ignore-without-code"
119118
disallow_any_generics = true

0 commit comments

Comments
 (0)