From 9617e6f850b6ab63466ee49b2498dd4f863769c6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 23:19:27 +0200 Subject: [PATCH 1/2] chore: update pre-commit hooks (#551) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.1 → v0.5.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.5.1...v0.5.2) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2c827fdf..898a4b4c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,7 +7,7 @@ default_language_version: python: python3 repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 'v0.5.1' + rev: 'v0.5.2' hooks: - id: ruff args: ["--fix", "--show-fixes"] From 8b53fc135373d526338399c2dc582673cd560f87 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 11 Aug 2024 04:32:24 -0400 Subject: [PATCH 2/2] Remove Sphinx pinning (#552) This was pinned in #434 because of the RTD theme, but #485 switched to the pydata sphinx theme, so there should not be any issues. Fixes #435 --- docs/release.rst | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/release.rst b/docs/release.rst index e682a3a6..f687e511 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -22,6 +22,9 @@ Fix Maintenance ~~~~~~~~~~~ +* Remove pin on Sphinx + By :user:`Elliott Sales de Andrade `, :issue:`552`. + .. _release_0.13.0: diff --git a/pyproject.toml b/pyproject.toml index af8f040a..c409cbd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ Homepage = "https://github.com/zarr-developers/numcodecs" [project.optional-dependencies] docs = [ - "sphinx<7.0.0", + "sphinx", "sphinx-issues", "pydata-sphinx-theme", "numpydoc",