Skip to content

Commit 147ac69

Browse files
committed
Bump to Python 3.13 minimum version
1 parent cc96bb2 commit 147ac69

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version: ['3.12']
29+
python-version: ['3.13']
3030
ci_pattern:
3131
- tests/mock_vws/test_query.py::TestContentType
3232
- tests/mock_vws/test_query.py::TestSuccess

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
python-version: ['3.12']
21+
python-version: ['3.13']
2222
platform: [ubuntu-latest, windows-latest]
2323

2424
runs-on: ${{ matrix.platform }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
strategy:
2424
matrix:
25-
python-version: ['3.12']
25+
python-version: ['3.13']
2626

2727
steps:
2828
- uses: actions/checkout@v4

.github/workflows/skip-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
python-version: ['3.12']
23+
python-version: ['3.13']
2424
platform: [ubuntu-latest]
2525

2626
runs-on: ${{ matrix.platform }}

.github/workflows/windows-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
python-version: ['3.12']
21+
python-version: ['3.13']
2222
platform: [windows-latest]
2323

2424
runs-on: ${{ matrix.platform }}

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ license = { file = "LICENSE" }
2121
authors = [
2222
{ name = "Adam Dangoor", email = "adamdangoor@gmail.com" },
2323
]
24-
requires-python = ">=3.12"
24+
requires-python = ">=3.13"
2525
classifiers = [
2626
"Development Status :: 5 - Production/Stable",
2727
"Environment :: Web Environment",
@@ -30,7 +30,7 @@ classifiers = [
3030
"Operating System :: Microsoft :: Windows",
3131
"Operating System :: POSIX",
3232
"Programming Language :: Python :: 3 :: Only",
33-
"Programming Language :: Python :: 3.12",
33+
"Programming Language :: Python :: 3.13",
3434
]
3535
dynamic = [
3636
"version",
@@ -350,7 +350,7 @@ DEP002 = [
350350
[tool.pyproject-fmt]
351351
indent = 4
352352
keep_full_version = true
353-
max_supported_python = "3.12"
353+
max_supported_python = "3.13"
354354

355355
[tool.pytest.ini_options]
356356

readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 2
44
build:
55
os: ubuntu-24.04
66
tools:
7-
python: '3.12'
7+
python: '3.13'
88

99
python:
1010
install:

0 commit comments

Comments
 (0)