From dc8cb4aaae8353ea0c399e74f4d29a19e5886bb9 Mon Sep 17 00:00:00 2001 From: David Stokes Date: Thu, 15 Feb 2024 17:41:55 -0500 Subject: [PATCH 1/2] Attempting to fix Sphinx version req issue --- docs/conf.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 394ad60..8237f55 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = 'en' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. diff --git a/setup.py b/setup.py index f9249ce..dda7c35 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def get_version(rel_path): ] DOCS_REQUIRES = [ - "sphinx==4.2.0", + "sphinx==5.0.2", "pydata-sphinx-theme==0.7.2", "nbsphinx", ] From e702783f13e12991b1d3fa9968faaebd3855f560 Mon Sep 17 00:00:00 2001 From: David Stokes Date: Thu, 15 Feb 2024 17:46:46 -0500 Subject: [PATCH 2/2] Another sphinx version fix attempt --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 6215406..7fbec45 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,5 +4,5 @@ pytest>=4.6 pytest-xdist[psutil] mock pytest-cov -sphinx==4.2.0 +sphinx==5.0.2 scipy;python_version<"3.10" diff --git a/setup.py b/setup.py index dda7c35..7db547c 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def get_version(rel_path): 'pytest-xdist[psutil]', 'mock', 'pytest-cov', - 'sphinx==4.2.0', + "sphinx==5.0.2", 'scipy;python_version<"3.10"', ]