Skip to content

Commit 224e649

Browse files
authored
Merge pull request #247 from 56kyle/feature/add-latest-stable-python-addition
Add python 3.13 to the supported versions
2 parents 3441f6d + 6799171 commit 224e649

File tree

6 files changed

+166
-163
lines changed

6 files changed

+166
-163
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Python
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: "3.12"
26+
python-version: "3.13"
2727

2828
- name: Upgrade pip
2929
run: |

.github/workflows/tests.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,23 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
include:
15-
- { python: "3.12", os: "ubuntu-latest", session: "pre-commit" }
16-
- { python: "3.12", os: "ubuntu-latest", session: "safety" }
15+
- { python: "3.13", os: "ubuntu-latest", session: "pre-commit" }
16+
- { python: "3.13", os: "ubuntu-latest", session: "safety" }
17+
- { python: "3.13", os: "ubuntu-latest", session: "mypy" }
1718
- { python: "3.12", os: "ubuntu-latest", session: "mypy" }
1819
- { python: "3.11", os: "ubuntu-latest", session: "mypy" }
1920
- { python: "3.10", os: "ubuntu-latest", session: "mypy" }
2021
- { python: "3.9", os: "ubuntu-latest", session: "mypy" }
22+
- { python: "3.13", os: "ubuntu-latest", session: "tests" }
2123
- { python: "3.12", os: "ubuntu-latest", session: "tests" }
2224
- { python: "3.11", os: "ubuntu-latest", session: "tests" }
2325
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
2426
- { python: "3.9", os: "ubuntu-latest", session: "tests" }
25-
- { python: "3.12", os: "windows-latest", session: "tests" }
26-
- { python: "3.12", os: "macos-latest", session: "tests" }
27-
- { python: "3.12", os: "ubuntu-latest", session: "typeguard" }
28-
- { python: "3.12", os: "ubuntu-latest", session: "xdoctest" }
29-
- { python: "3.12", os: "ubuntu-latest", session: "docs-build" }
27+
- { python: "3.13", os: "windows-latest", session: "tests" }
28+
- { python: "3.13", os: "macos-latest", session: "tests" }
29+
- { python: "3.13", os: "ubuntu-latest", session: "typeguard" }
30+
- { python: "3.13", os: "ubuntu-latest", session: "xdoctest" }
31+
- { python: "3.13", os: "ubuntu-latest", session: "docs-build" }
3032

3133
env:
3234
NOXSESSION: ${{ matrix.session }}
@@ -122,7 +124,7 @@ jobs:
122124
- name: Set up Python
123125
uses: actions/setup-python@v5
124126
with:
125-
python-version: "3.12"
127+
python-version: "3.13"
126128

127129
- name: Upgrade pip
128130
run: |

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
build:
33
os: ubuntu-20.04
44
tools:
5-
python: "3.12"
5+
python: "3.13"
66
sphinx:
77
configuration: docs/conf.py
88
formats: all

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525

2626
package = "pytest_static"
27-
python_versions = ["3.12", "3.11", "3.10", "3.9"]
27+
python_versions = ["3.13", "3.12", "3.11", "3.10", "3.9"]
2828
nox.needs_version = ">= 2021.6.6"
2929
nox.options.sessions = (
3030
"pre-commit",

0 commit comments

Comments
 (0)