Skip to content

Commit 2b231d8

Browse files
committed
Support Python 3.14
1 parent 91c5a18 commit 2b231d8

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/test-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1616
steps:
1717
- uses: actions/checkout@v6.0.2
1818
with:
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
os: [ubuntu-latest, windows-latest]
33-
python-version: ["3.10", "3.13"]
33+
python-version: ["3.10", "3.14"]
3434
steps:
3535
- uses: actions/checkout@v6.0.2
3636
with:

template/.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
python-version: ["3.10", "3.11", "3.12", "3.13"]
22+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2323
fail-fast: false
2424

2525
steps:

template/README.md.jinja

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
## Developer Tools
2727

2828
There are several pre-defined command-recipes available.
29-
They are written for the command runner [just](https://github.com/casey/just/). To list all pre-defined commands, run `just` or `just --list`.
29+
They are written for the command runner [just](https://github.com/casey/just/).
30+
To list all pre-defined commands, run `just` or `just --list`.
3031

3132
## Credits
3233

template/pyproject.toml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
license = "{{license}}"
1212
license-files = ["LICENSE"]
1313
readme = "README.md"
14-
requires-python = ">=3.10,<4.0"
14+
requires-python = ">=3.10"
1515
dynamic = ["version"]
1616

1717
dependencies = [

0 commit comments

Comments
 (0)