ci: workaround docs build error
workaround for https://github.com/readthedocs/sphinx_rtd_theme/issues/1343
This commit is contained in:
parent
b405eb892a
commit
460a30bbac
|
|
@ -9,7 +9,7 @@ $env:Path += ";C:\Program Files\Git\usr\bin"
|
||||||
py -m venv ericwtools-env
|
py -m venv ericwtools-env
|
||||||
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
||||||
ericwtools-env\Scripts\Activate.ps1
|
ericwtools-env\Scripts\Activate.ps1
|
||||||
python.exe -m pip install sphinx_rtd_theme
|
python.exe -m pip install -r docs/requirements.txt --force-reinstall
|
||||||
|
|
||||||
# Confirm Sphinx is installed
|
# Confirm Sphinx is installed
|
||||||
get-command sphinx-build
|
get-command sphinx-build
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
python3 -m pip install sphinx_rtd_theme
|
python3 -m pip install -r docs/requirements.txt --force-reinstall
|
||||||
export PATH="~/.local/bin/:$PATH"
|
export PATH="~/.local/bin/:$PATH"
|
||||||
|
|
||||||
BUILD_DIR=build-linux
|
BUILD_DIR=build-linux
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
# for sha256sum, used by the tests
|
# for sha256sum, used by the tests
|
||||||
brew install coreutils
|
brew install coreutils
|
||||||
|
|
||||||
python3 -m pip install sphinx_rtd_theme
|
python3 -m pip install -r docs/requirements.txt --force-reinstall
|
||||||
|
|
||||||
BUILD_DIR=build-osx
|
BUILD_DIR=build-osx
|
||||||
EMBREE_ZIP="https://github.com/embree/embree/releases/download/v3.13.0/embree-3.13.0.x86_64.macosx.zip"
|
EMBREE_ZIP="https://github.com/embree/embree/releases/download/v3.13.0/embree-3.13.0.x86_64.macosx.zip"
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ git submodule update --init --recursive
|
||||||
py -m venv ericwtools-env
|
py -m venv ericwtools-env
|
||||||
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
||||||
ericwtools-env\Scripts\Activate.ps1
|
ericwtools-env\Scripts\Activate.ps1
|
||||||
python.exe -m pip install sphinx_rtd_theme
|
python.exe -m pip install -r docs/requirements.txt --force-reinstall
|
||||||
|
|
||||||
# Confirm Sphinx is installed
|
# Confirm Sphinx is installed
|
||||||
get-command sphinx-build
|
get-command sphinx-build
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
sphinx==5.1.1
|
||||||
|
sphinx_rtd_theme==1.0.0
|
||||||
Loading…
Reference in New Issue