From dfe22364b89b94a0bee228ba2b0ddc56db3879a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 13:00:58 +0000 Subject: [PATCH 1/2] Bump pre-commit/action from 3.0.0 to 3.0.1 Bumps [pre-commit/action](https://github.com/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: pre-commit/action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb235837d47..727db628f0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: run: | pip install restructuredtext-lint restructuredtext-lint README.rst - - uses: pre-commit/action@v3.0.0 + - uses: pre-commit/action@v3.0.1 with: extra_args: --files $(git diff origin/main --name-only) tests: From 8246d71c68a33b0eb786d7e1887a50d955bc4556 Mon Sep 17 00:00:00 2001 From: Maximilian Linhoff Date: Mon, 12 Feb 2024 14:47:26 +0100 Subject: [PATCH 2/2] Fix intersphinx link for iminuit, their docs were moved --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 1ed5c080949..877827bba24 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -393,6 +393,6 @@ def setup(app): "pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None), "matplotlib": ("https://matplotlib.org/stable", None), "cython": ("https://docs.cython.org/en/latest/", None), - "iminuit": ("https://iminuit.readthedocs.io/en/latest/", None), + "iminuit": ("https://scikit-hep.org/iminuit/", None), "traitlets": ("https://traitlets.readthedocs.io/en/stable/", None), }