Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
# Test all supported versions on Ubuntu:
os: [ubuntu-latest, ubuntu-24.04-arm]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.10", "3.11", "3.12", "3.13"]
experimental: [false]
build: ['']
include:
Expand All @@ -43,10 +43,7 @@ jobs:
build: 'free-threading'
# Also test PyPy, macOS, and Windows:
- os: ubuntu-latest
python: pypy-3.10
experimental: false
- os: ubuntu-latest
python: pypy-3.9
python: pypy-3.11
experimental: false
- os: macos-latest
python: "3.13"
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ description = "Python benchmark suite"
readme = "README.rst"
license = { text = "MIT" }
authors = [ { name = "Collin Winter" }, { name = "Jeffrey Yasskin" } ]
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand All @@ -57,7 +57,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down Expand Up @@ -109,7 +108,7 @@ lint.ignore = [
max_supported_python = "3.14"

[tool.mypy]
python_version = "3.9"
python_version = "3.10"
pretty = true
enable_error_code = "ignore-without-code"
disallow_any_generics = true
Expand Down
Loading