From a6b102179a9969c48e43cd44c4baec83a11c3794 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Thu, 17 Aug 2023 09:12:03 -0700 Subject: [PATCH 1/2] Update pydata-sphinx-theme --- .github/workflows/test.yml | 2 -- pyproject.toml | 4 ++-- requirements/doc.txt | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 104d9898..73290996 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,7 +65,6 @@ jobs: run: | sudo apt-get update sudo apt install texlive texlive-latex-extra latexmk dvipng - pip install "sphinx<6" - name: Build documentation run: | @@ -117,7 +116,6 @@ jobs: run: | sudo apt-get update sudo apt install texlive texlive-latex-extra latexmk dvipng - pip install "sphinx<6" - name: Build documentation run: | diff --git a/pyproject.toml b/pyproject.toml index 70bfbded..374008b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,8 +50,8 @@ developer = [ doc = [ 'numpy>=1.22', 'matplotlib>=3.5', - 'pydata-sphinx-theme>=0.13', - 'sphinx>=6', + 'pydata-sphinx-theme>=0.13.3', + 'sphinx>=7', ] test = [ 'pytest', diff --git a/requirements/doc.txt b/requirements/doc.txt index de4cdc1f..f3d9b058 100644 --- a/requirements/doc.txt +++ b/requirements/doc.txt @@ -2,5 +2,5 @@ # Do not edit this file; modify pyproject.toml instead. numpy>=1.22 matplotlib>=3.5 -pydata-sphinx-theme>=0.13 -sphinx>=6 +pydata-sphinx-theme>=0.13.3 +sphinx>=7 From aea80e4184487f8371d9ebe7cc271c5c1c571779 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Thu, 17 Aug 2023 09:17:06 -0700 Subject: [PATCH 2/2] Use python 3.11 to build docs --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b2269f47..66a60c8d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: build_docs: docker: - - image: "cimg/python:3.10" + - image: "cimg/python:3.11" steps: - checkout - run: