Skip to content

Commit 203f1df

Browse files
authored
Temporarily avoid the current build of pydata-sphinx-theme (#14332)
There appears to be a bug in the latest release of pydata-sphinx theme where a warning that was intended to be thrown conditionally is appearing unconditionally in our builds, triggering a doc build failure because we build with `-W`. See pydata/pydata-sphinx-theme#1539 for more information. We should be OK to simply avoid the current version for now. If the next release is a minor release then the warning will be removed and we can automatically upgrade. If they have another patch release then we can reevaluate the pinning, but the current pinning seems like the most likely to require no additional work going forward. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) URL: #14332
1 parent ce93a00 commit 203f1df

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

conda/environments/all_cuda-118_arch-x86_64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies:
6969
- protobuf>=4.21,<5
7070
- ptxcompiler
7171
- pyarrow==12.0.1.*
72-
- pydata-sphinx-theme
72+
- pydata-sphinx-theme!=0.14.2
7373
- pytest
7474
- pytest-benchmark
7575
- pytest-cases

conda/environments/all_cuda-120_arch-x86_64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ dependencies:
6767
- pre-commit
6868
- protobuf>=4.21,<5
6969
- pyarrow==12.0.1.*
70-
- pydata-sphinx-theme
70+
- pydata-sphinx-theme!=0.14.2
7171
- pytest
7272
- pytest-benchmark
7373
- pytest-cases

dependencies.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,8 @@ dependencies:
379379
- nbsphinx
380380
- numpydoc
381381
- pandoc
382-
- pydata-sphinx-theme
382+
# https://github.com/pydata/pydata-sphinx-theme/issues/1539
383+
- pydata-sphinx-theme!=0.14.2
383384
- scipy
384385
- sphinx
385386
- sphinx-autobuild

0 commit comments

Comments
 (0)