Skip to content

Commit ed85dcb

Browse files
vivekmigfacebook-github-bot
authored andcommitted
Add ipython_genutils to pip dependencies (#1203)
Summary: Tutorial generation is currently failing due to ipython_genutils not being found. Adding this dependency for website publishing. Pull Request resolved: #1203 Reviewed By: aobo-y Differential Revision: D51178476 Pulled By: vivekmig fbshipit-source-id: 7e5a25db1529c0a8ed4dfbc1b152840a18124fbb
1 parent 36d8d2b commit ed85dcb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test-website-depoy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
sudo chmod -R 777 .
1818
python3 -m pip install --upgrade pip --progress-bar off
1919
python3 -m pip install -e .[dev] --progress-bar off
20-
python3 -m pip install beautifulsoup4 ipython jinja2==3.0.0 nbconvert==5.6.1 --progress-bar off
20+
python3 -m pip install beautifulsoup4 ipython jinja2==3.0.0 nbconvert==5.6.1 ipython_genutils --progress-bar off
2121
./scripts/build_docs.sh -b
2222
cd website

.github/workflows/website-depoy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
sudo chmod -R 777 .
2424
python3 -m pip install --upgrade pip --progress-bar off
2525
python3 -m pip install -e .[dev] --progress-bar off
26-
python3 -m pip install beautifulsoup4 ipython jinja2==3.0.0 nbconvert==5.6.1 --progress-bar off
26+
python3 -m pip install beautifulsoup4 ipython jinja2==3.0.0 nbconvert==5.6.1 ipython_genutils --progress-bar off
2727
./scripts/build_docs.sh -b
2828
cd website
2929

0 commit comments

Comments
 (0)