Skip to content

Commit f1bfc05

Browse files
committed
Workaround pygraphviz 1.8 bug for pip 22 / py 3.7
pygraphviz/pygraphviz#395
1 parent a60f798 commit f1bfc05

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/install-dependencies/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ runs:
2121
gsfonts \
2222
libfreetype6-dev \
2323
libfontconfig1-dev
24+
# Explanation of some of these dependencies:
2425
# https://github.com/ImageMagick/ImageMagick/issues/374#issuecomment-279252866
2526

2627
- shell: bash
2728
run: |
2829
echo "[command]pip install pygraphviz"
29-
pip install pygraphviz
30+
pip install "pygraphviz>1.0,!=1.8.0"

0 commit comments

Comments
 (0)