Skip to content

Commit 461eb2f

Browse files
committed
Don't test Python 3.13
1 parent f5b517a commit 461eb2f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.buildkite/generatesteps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def benchmark_to_steps(python, connection_class):
5353

5454
if __name__ == "__main__":
5555
steps = []
56-
for python in ["3.9", "3.10", "3.11", "3.12", "3.13"]:
56+
for python in ["3.9", "3.10", "3.11", "3.12"]:
5757
for connection_class in ["urllib3", "requests"]:
5858
steps.extend(benchmark_to_steps(python, connection_class))
5959
print(yaml.dump({"steps": steps}, Dumper=yaml.Dumper, sort_keys=False))

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
strategy:
6060
fail-fast: false
6161
matrix:
62-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
62+
python-version: ["3.9", "3.10", "3.11", "3.12"]
6363
experimental: [false]
6464
nox-session: [""]
6565
runs-on: ["ubuntu-latest"]

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
INSTALL_ENV = {"AIOHTTP_NO_EXTENSIONS": "1"}
3232

3333

34-
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
34+
@nox.session(python=["3.9", "3.10", "3.11", "3.12"])
3535
def test(session):
3636
session.install(".[dev]", env=INSTALL_ENV)
3737

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ classifiers = [
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.12",
29-
"Programming Language :: Python :: 3.13",
3029
"Programming Language :: Python :: Implementation :: CPython",
3130
"Programming Language :: Python :: Implementation :: PyPy",
3231
]

0 commit comments

Comments
 (0)