File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 42
42
- name : Install dependencies
43
43
run : |
44
44
pip install -U pip
45
- pip install -r requirements.txt
46
45
47
46
if [ "$RUNNER_OS" == "macOS" ]; then
48
47
pip install --config-settings="--global-option=build_ext" \
51
50
pygraphviz
52
51
elif [ "$RUNNER_OS" == "Linux" ]; then
53
52
pip install pygraphviz
53
+
54
54
fi
55
55
56
+ pip install -r requirements.txt
57
+ pip list
58
+
56
59
- name : Lint with precommit
57
60
run : |
58
61
pip install pre-commit
Original file line number Diff line number Diff line change 1
1
# nx-guides is tested on the development branch of NetworkX
2
2
git+https://github.com/networkx/networkx@main
3
3
4
- # Scientific Python (see networkx/requirements/default.txt)
4
+ # Dependencies for running the tutorials
5
5
numpy
6
6
scipy
7
7
matplotlib
8
8
pandas
9
9
ipython != 8.7.0
10
+ pygraphviz
10
11
11
12
# For testing and site generation
12
13
nbval
You can’t perform that action at this time.
0 commit comments