Skip to content

Commit

Permalink
ci: add sudo to graphviz install
Browse files Browse the repository at this point in the history
  • Loading branch information
geddy11 committed Oct 31, 2024
1 parent a46675b commit 20185f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Graphviz
run: apt-get install graphviz -y
run: sudo apt-get install graphviz -y

- name: Install poetry
uses: snok/install-poetry@v1
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ build:
jobs:
post_create_environment:
# install graphviz
- apt-get install graphviz -y
- sudo apt-get install graphviz -y
# Install poetry et.al.
# https://python-poetry.org/docs/#installing-manually
- pip install poetry jupyter-book sphinx-autoapi toml numpy pandas rustworkx scipy rich matplotlib tqdm ipywidgets graphviz packaging pydot pillow
Expand Down

0 comments on commit 20185f6

Please sign in to comment.