Skip to content

Commit 1272aee

Browse files
committed
misc!: Added Python 3.14 support, removed Python 3.9 support
1 parent 2b382e7 commit 1272aee

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: "Set up Python"
2323
uses: actions/setup-python@v6
2424
with:
25-
python-version: "3.13"
25+
python-version: "3.14"
2626

2727
- name: "Install Python dependencies"
2828
run: |

.github/workflows/python-ci.yml

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

99
strategy:
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
11+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1212

1313
name: "Lint and Test"
1414
runs-on: macos-latest

.github/workflows/python-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: "Set up Python"
2222
uses: actions/setup-python@v6
2323
with:
24-
python-version: "3.13"
24+
python-version: "3.14"
2525

2626
- name: "Install Python build dependencies"
2727
run: |

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ Changelog
117117
* **[NEXT]** (changes on ``master``, but not released yet):
118118

119119
* misc: Replaced setup.py by pyproject.toml (@flozz)
120-
* misc: Added Python 3.13 support (@flozz)
121-
* misc!: Removed Python 3.8 support (@flozz)
120+
* misc: Added Python 3.13, 3.14 support (@flozz)
121+
* misc!: Removed Python 3.8, 3.9 support (@flozz)
122122

123123
* **v1.0.0:**
124124

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"doc",
99
]
1010

11-
PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
11+
PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"]
1212

1313

1414
@nox.session(reuse_venv=True)

0 commit comments

Comments
 (0)