From 53ca0f174f835379c8cee7eb1e486bc2f3114996 Mon Sep 17 00:00:00 2001 From: veit Date: Tue, 3 Mar 2026 12:30:34 +0100 Subject: [PATCH 1/3] :arrow_up: Update pre-commit hooks --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bbae4407..796e7e16 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.14.2 + rev: v2.16.2 hooks: - id: pyproject-fmt - repo: https://github.com/abravalheri/validate-pyproject @@ -33,7 +33,7 @@ repos: - id: sphinx-lint types: [rst] - repo: https://github.com/pycqa/isort - rev: 7.0.0 + rev: 8.0.1 hooks: - id: isort additional_dependencies: ["toml"] From 1d277d276888a2b7596f65fa3b3445bad4ea611c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 18:18:09 +0000 Subject: [PATCH 2/3] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/tox-dev/pyproject-fmt: v2.16.2 → v2.21.0](https://github.com/tox-dev/pyproject-fmt/compare/v2.16.2...v2.21.0) - [github.com/psf/black-pre-commit-mirror: 26.1.0 → 26.3.1](https://github.com/psf/black-pre-commit-mirror/compare/26.1.0...26.3.1) - [github.com/codespell-project/codespell: v2.4.1 → v2.4.2](https://github.com/codespell-project/codespell/compare/v2.4.1...v2.4.2) --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 796e7e16..8f8cf508 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.16.2 + rev: v2.21.0 hooks: - id: pyproject-fmt - repo: https://github.com/abravalheri/validate-pyproject @@ -40,7 +40,7 @@ repos: entry: isort --profile=black name: isort (python) - repo: https://github.com/psf/black-pre-commit-mirror - rev: 26.1.0 + rev: 26.3.1 hooks: - id: black - repo: https://github.com/adamchainz/blacken-docs @@ -51,7 +51,7 @@ repos: additional_dependencies: - black - repo: https://github.com/codespell-project/codespell - rev: v2.4.1 + rev: v2.4.2 hooks: - id: codespell - repo: local From 2402f40c3149fa3ab819559185fed94fa418d33c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 18:24:44 +0000 Subject: [PATCH 3/3] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- docs/dashboards/voila/templating.rst | 1 - docs/sphinx/nbsphinx.rst | 1 - pyproject.toml | 13 +++++++------ 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/docs/dashboards/voila/templating.rst b/docs/dashboards/voila/templating.rst index f3e08d69..04567a29 100644 --- a/docs/dashboards/voila/templating.rst +++ b/docs/dashboards/voila/templating.rst @@ -371,7 +371,6 @@ app: from voila.app import Voila from voila.config import VoilaConfiguration - config = VoilaConfiguration() config.prelaunch_hook = parameterize_with_papermill config.page_config_hook = page_config_hook diff --git a/docs/sphinx/nbsphinx.rst b/docs/sphinx/nbsphinx.rst index 7ca67404..89fafe5e 100644 --- a/docs/sphinx/nbsphinx.rst +++ b/docs/sphinx/nbsphinx.rst @@ -85,7 +85,6 @@ Custom formats import jupytext - nbsphinx_custom_formats = { ".Rmd": lambda s: jupytext.reads(s, ".Rmd"), } diff --git a/pyproject.toml b/pyproject.toml index bc4ac767..665a1602 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,10 @@ [project] name = "jupyter-tutorial" version = "24.1.0" -description = "Training materials for setting up and using a research infrastructure based on Jupyter notebooks: https://cusy.io/en/seminars" +description = """\ + Training materials for setting up and using a research infrastructure based on Jupyter notebooks: \ + https://cusy.io/en/seminars\ + """ readme = "README.rst" license = "BSD-3-Clause" license-files = [ "LICENSE" ] @@ -18,10 +21,9 @@ classifiers = [ "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", ] -dependencies = [ ] - +dependencies = [] urls."Bug Tracker" = "https://github.com/veit/jupyter-tutorial/issues" -urls."Homepage" = "https://github.com/veit/jupyter-tutorial/" +urls.Homepage = "https://github.com/veit/jupyter-tutorial/" [dependency-groups] dev = [ @@ -47,7 +49,7 @@ docs = [ ] [tool.setuptools] -packages = [ ] +packages = [] [tool.black] line-length = 79 @@ -61,7 +63,6 @@ lines_between_types = 1 multi_line_output = 3 not_skip = "__init__.py" use_parentheses = true - known_first_party = "jupyter-tutorial-de" known_third_party = [ "Cython",