Skip to content

Commit c2ef3dd

Browse files
authored
1 parent 4327328 commit c2ef3dd

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
- uses: paddyroddy/.github/actions/python/deployment@f2115592179eb43cf106eeb181adcd003d4cba41 # v0
2121
with:
2222
pyproject-toml: ./pyproject.toml
23-
python-version: "3.12"
23+
python-version: "3.13"

.github/workflows/documentation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
github-token: ${{ secrets.GITHUB_TOKEN }}
2121
project-directory: ./src/example
2222
pyproject-toml: ./pyproject.toml
23-
python-version: "3.12"
23+
python-version: "3.13"
2424
template-directory: ./documentation

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- ubuntu-latest
2727
- windows-latest
2828
python-version:
29-
- "3.10"
3029
- "3.11"
3130
- "3.12"
31+
- "3.13"
3232
steps:
3333
# yamllint disable-line rule:line-length
3434
- uses: paddyroddy/.github/actions/python/tox@f2115592179eb43cf106eeb181adcd003d4cba41 # v0

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ classifiers = [
1414
"Operating System :: POSIX",
1515
"Programming Language :: Python :: 3",
1616
"Programming Language :: Python :: 3 :: Only",
17-
"Programming Language :: Python :: 3.9",
18-
"Programming Language :: Python :: 3.10",
1917
"Programming Language :: Python :: 3.11",
2018
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
2120
"Typing :: Typed",
2221
]
2322
dependencies = []
@@ -40,7 +39,7 @@ optional-dependencies = {dev = [
4039
"pdoc3",
4140
]}
4241
readme = "README.md"
43-
requires-python = ">=3.10"
42+
requires-python = ">=3.11"
4443
urls = {Code = """\
4544
https://github.com/paddyroddy/python-template\
4645
""", Documentation = """\
@@ -143,9 +142,9 @@ overrides."tool.ruff.lint.isort.section-order".inline_arrays = false
143142
legacy_tox_ini = """
144143
[gh-actions]
145144
python =
146-
3.10: py310
147145
3.11: py311
148146
3.12: py312
147+
3.13: py313
149148
150149
[gh-actions:env]
151150
OS =

0 commit comments

Comments
 (0)