Skip to content

Commit fd06deb

Browse files
authored
Use bugfixed version of external toc plugin (#130)
This pulls a bugfixed version of the external_toc plugin and builds or installs it as part of the environment.
1 parent 12cf3cd commit fd06deb

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ commands:
6666
python3 -m venv .python-env
6767
source .python-env/bin/activate
6868
python -m pip install -r requirements.txt
69+
git clone git@github.com:bame-da/sphinx-external-toc.git
70+
cd sphinx-external-toc
71+
git checkout 8a33082711c7ccf3472a9381f9c9eee474f71a2d
72+
flit install
73+
cd ..
74+
rm -rf sphinx-external-toc
6975
EOF
7076
7177
jobs:

.envrc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ source $pyenv/bin/activate
1212
PATH_add $pyenv/bin
1313

1414
python -m pip install -r requirements.txt
15-
15+
git clone git@github.com:bame-da/sphinx-external-toc.git
16+
cd sphinx-external-toc
17+
git checkout 8a33082711c7ccf3472a9381f9c9eee474f71a2d
18+
flit install
19+
cd ..
20+
rm -rf sphinx-external-toc
1621
[[ -f .envrc.private ]] && source_env .envrc.private
1722

1823
watch_file requirements.txt

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Sphinx==4.3.1
22
sphinx-autobuild==2021.3.14
33
sphinx-copybutton==0.5.1
4-
sphinx_external_toc==0.3.1
54
sphinxext-remoteliteralinclude==0.4.0
5+
flit==3.8.0

0 commit comments

Comments
 (0)