From c1256716dbba12010fc786859a07536364350c87 Mon Sep 17 00:00:00 2001 From: veit Date: Mon, 17 Nov 2025 13:58:35 +0100 Subject: [PATCH 1/4] :arrow_up: 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 --- .pre-commit-config.yaml | 6 +++--- .python-version | 2 +- .readthedocs.yaml | 4 ++-- pyproject.toml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e0fe4218..2dc860fc 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,7 +20,7 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/tox-dev/pyproject-fmt - rev: v2.7.0 + rev: v2.11.1 hooks: - id: pyproject-fmt - repo: https://github.com/abravalheri/validate-pyproject @@ -28,7 +28,7 @@ repos: hooks: - id: validate-pyproject - repo: https://github.com/sphinx-contrib/sphinx-lint - rev: v1.0.0 + rev: v1.0.1 hooks: - id: sphinx-lint types: [rst] @@ -40,7 +40,7 @@ repos: entry: isort --profile=black name: isort (python) - repo: https://github.com/psf/black - rev: 25.9.0 + rev: 25.11.0 hooks: - id: black - repo: https://github.com/adamchainz/blacken-docs diff --git a/.python-version b/.python-version index e4fba218..24ee5b1b 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.12 +3.13 diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 443ce0d6..cac585c0 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -7,12 +7,12 @@ version: 2 # Set the version of Python and other tools you might need build: - os: ubuntu-22.04 + os: ubuntu-24.04 apt_packages: # graphviz is required for sphinx.ext.graphviz - graphviz tools: - python: "3.12" + python: "3.13" jobs: install: - python -m pip install --upgrade pip diff --git a/pyproject.toml b/pyproject.toml index 70d7dee7..bc4ac767 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,15 +8,15 @@ license-files = [ "LICENSE" ] authors = [ { name = "Veit Schiele", email = "veit@cusy.io" }, ] -requires-python = ">=3.9" +requires-python = ">=3.10" classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dependencies = [ ] From 506855963f791c931fea5478b3a39dc6c52c8f4b Mon Sep 17 00:00:00 2001 From: veit Date: Sun, 23 Nov 2025 17:23:45 +0100 Subject: [PATCH 2/4] :wrench: Group dependabot updates --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3a626c3a..8f2ceaca 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,7 @@ updates: directory: / schedule: interval: monthly + groups: + github-actions: + patterns: + - "*" From e9ac555c30d15e67ef1f911f69cb614317207b19 Mon Sep 17 00:00:00 2001 From: veit Date: Sun, 23 Nov 2025 17:25:04 +0100 Subject: [PATCH 3/4] :wrench: Add dependabot cooldown --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8f2ceaca..fa963381 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,8 @@ updates: directory: / schedule: interval: monthly + cooldown: + default-days: 10 groups: github-actions: patterns: From 306cde410f68ae62f39f98536f6672b11fd414b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 18:51:58 +0000 Subject: [PATCH 4/4] :arrow_up: Bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [pre-commit/action](https://github.com/pre-commit/action). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `pre-commit/action` from 3.0.0 to 3.0.1 - [Release notes](https://github.com/pre-commit/action/releases) - [Commits](https://github.com/pre-commit/action/compare/v3.0.0...v3.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pre-commit/action dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- .github/workflows/pre-commit.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5f353c4f..067e0aac 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -10,7 +10,7 @@ jobs: name: Build docs and check links runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: pandoc/actions/setup@v1 - uses: ts-graphviz/setup-graphviz@v2 - uses: actions/setup-python@v6 diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 086bf8db..6a45e8c8 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -9,10 +9,10 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 - uses: actions/cache@v4 with: path: ~/.cache/pre-commit key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} - - uses: pre-commit/action@v3.0.0 + - uses: pre-commit/action@v3.0.1