Skip to content

Commit da07f8e

Browse files
committed
misc!: Added Python 3.13 support and removed Python 3.8 support
1 parent a798bab commit da07f8e

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.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@v5
2424
with:
25-
python-version: "3.12"
25+
python-version: "3.13"
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.8", "3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
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@v5
2323
with:
24-
python-version: "3.12"
24+
python-version: "3.13"
2525

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

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ To run the tests, use::
8989

9090
You can use following commands to run the tests only on a certain Python version (the corresponding Python interpreter must be installed on your machine)::
9191

92-
nox -s test-3.8
9392
nox -s test-3.9
9493
nox -s test-3.10
9594
nox -s test-3.11
9695
nox -s test-3.12
96+
nox -s test-3.13
9797

9898

9999
Build the documentation
@@ -116,7 +116,8 @@ Changelog
116116

117117
* **[NEXT]** (changes on ``master``, but not released yet):
118118

119-
* Nothing yet ;)
119+
* misc: Added Python 3.13 support (@flozz)
120+
* misc!: Removed Python 3.8 support (@flozz)
120121

121122
* **v1.0.0:**
122123

noxfile.py

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

12-
PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414

1515
@nox.session(reuse_venv=True)

0 commit comments

Comments
 (0)