Skip to content

Commit b1638b9

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 c8bfac7 commit b1638b9

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ ci:
66

77
repos:
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v5.0.0
9+
rev: v6.0.0
1010
hooks:
1111
- id: trailing-whitespace
1212
- id: end-of-file-fixer
1313
- id: check-yaml
1414
- id: check-json
1515
types: [file] # override `types: [json]`
1616
files: \.(json|ipynb)$
17-
- repo: https://github.com/psf/black
18-
rev: "25.1.0"
17+
- repo: https://github.com/psf/black-pre-commit-mirror
18+
rev: "25.12.0"
1919
hooks:
2020
- id: black
21-
- repo: https://github.com/asottile/reorder_python_imports
22-
rev: "v3.15.0"
21+
- repo: https://github.com/asottile/reorder-python-imports
22+
rev: "v3.16.0"
2323
hooks:
2424
- id: reorder-python-imports
2525
- repo: https://github.com/pycqa/flake8
@@ -28,7 +28,7 @@ repos:
2828
- id: flake8
2929
language_version: python3
3030
- repo: https://github.com/sphinx-contrib/sphinx-lint
31-
rev: v1.0.0
31+
rev: v1.0.2
3232
hooks:
3333
- id: sphinx-lint
3434
types: [rst]

.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,9 +7,9 @@ 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
tools:
12-
python: "3.12"
12+
python: "3.13"
1313
jobs:
1414
install:
1515
- python -m pip install --upgrade pip

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
]
77
description = "Richtlinien für Benutzeroberflächen, Code-Beispiele, Designtools und Ressourcen"
88
readme = "README.rst"
9-
requires-python = ">=3.9"
9+
requires-python = ">=3.10"
1010
classifiers = [
1111
"Programming Language :: Python :: 3",
1212
"License :: OSI Approved :: BSD License",

0 commit comments

Comments
 (0)