Skip to content

Commit fa53640

Browse files
committed
⬆️ Updates and remove Python 3.9
* Update pre-commit checks * Remove Python 3.9 * Update default Python to 3.13 * Update rtd build to ubuntu-24.03
1 parent 4e7728a commit fa53640

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ repos:
1818
- id: end-of-file-fixer
1919
- id: trailing-whitespace
2020
- repo: https://github.com/tox-dev/pyproject-fmt
21-
rev: v2.7.0
21+
rev: v2.11.1
2222
hooks:
2323
- id: pyproject-fmt
2424
- repo: https://github.com/abravalheri/validate-pyproject
2525
rev: v0.24.1
2626
hooks:
2727
- id: validate-pyproject
2828
- repo: https://github.com/sphinx-contrib/sphinx-lint
29-
rev: v1.0.0
29+
rev: v1.0.1
3030
hooks:
3131
- id: sphinx-lint
3232
types: [rst]
@@ -38,7 +38,7 @@ repos:
3838
entry: isort --profile=black
3939
name: isort (python)
4040
- repo: https://github.com/psf/black
41-
rev: 25.9.0
41+
rev: 25.11.0
4242
hooks:
4343
- id: black
4444
- repo: https://github.com/adamchainz/blacken-docs

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ version: 2
77

88
# Set the version of Python and other tools you might need
99
build:
10-
os: ubuntu-22.04
10+
os: ubuntu-24.04
1111
apt_packages:
1212
# graphviz is required for sphinx.ext.graphviz
1313
- graphviz
1414
tools:
15-
python: "3.12"
15+
python: "3.13"
1616
jobs:
1717
install:
1818
- python -m pip install --upgrade pip

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ license-files = [ "LICENSE" ]
88
authors = [
99
{ name = "Veit Schiele", email = "veit@cusy.io" },
1010
]
11-
requires-python = ">=3.9"
11+
requires-python = ">=3.10"
1212
classifiers = [
1313
"Operating System :: OS Independent",
1414
"Programming Language :: Python :: 3 :: Only",
15-
"Programming Language :: Python :: 3.9",
1615
"Programming Language :: Python :: 3.10",
1716
"Programming Language :: Python :: 3.11",
1817
"Programming Language :: Python :: 3.12",
1918
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
2020
]
2121
dependencies = [ ]
2222

0 commit comments

Comments
 (0)