From b77263fda8c8b05c610e086346738fa3daf6a5cb Mon Sep 17 00:00:00 2001 From: Mauro Silberberg Date: Sat, 22 Feb 2025 20:41:09 -0300 Subject: [PATCH] build: upper bound for sphinx (#2143) Docs are not building with the lastest version of sphinx (v8.2.0). ```sh Traceback ========= File ".../pint/.pixi/envs/docs/lib/python3.11/site-packages/sphinx/events.py", line 415, in emit raise ExtensionError( sphinx.errors.ExtensionError: Handler for event 'html-collect-pages' threw an exception (exception: module 'sphinx.util' has no attribute 'console') ``` --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ecb00df74..a4ff41ada 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ all = [ "pint[numpy,uncertainties,babel,pandas,pandas,xarray,dask,mip,matplotlib]", ] docs = [ - "sphinx>=6", + "sphinx>=6,<8.2", "ipython<=8.12", "nbsphinx", "jupyter_client",