From 1a039185e0e3069f7e88a4fc7ba55b2b729ac535 Mon Sep 17 00:00:00 2001 From: Shawn Brown Date: Sun, 20 Dec 2020 19:20:31 -0500 Subject: [PATCH 1/3] BUG: Temporarily pin the version of Sphinx to 3.3.1 in requirements. Currently, the CI "Build documentation" step is failing with Sphinx 3.4.0. --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index d45e87b1785b0..084952fbdf5ef 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -17,7 +17,7 @@ pycodestyle pyupgrade gitpython gitdb -sphinx +sphinx==3.3.1 nbconvert>=5.4.1 nbsphinx pandoc From ac4913fa2cc35cd51511404831b15ea284466342 Mon Sep 17 00:00:00 2001 From: Shawn Brown Date: Sun, 20 Dec 2020 19:46:56 -0500 Subject: [PATCH 2/3] Temporarily pin Sphinx version in environment.yml (See 1a03918). --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 600a20b153ed3..6b355afcec6c5 100644 --- a/environment.yml +++ b/environment.yml @@ -31,7 +31,7 @@ dependencies: # documentation - gitpython # obtain contributors from git for whatsnew - gitdb - - sphinx + - sphinx==3.3.1 # documentation (jupyter notebooks) - nbconvert>=5.4.1 From ecd18ed455c1ab27d21419d96cedeb146d9f4365 Mon Sep 17 00:00:00 2001 From: Shawn Brown Date: Sun, 20 Dec 2020 19:59:13 -0500 Subject: [PATCH 3/3] Correct version definition in environment.yml file. --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 6b355afcec6c5..a23e7906a42a0 100644 --- a/environment.yml +++ b/environment.yml @@ -31,7 +31,7 @@ dependencies: # documentation - gitpython # obtain contributors from git for whatsnew - gitdb - - sphinx==3.3.1 + - sphinx=3.3.1 # documentation (jupyter notebooks) - nbconvert>=5.4.1