Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-add pygraphviz as a dependency. #137

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
- name: Install dependencies
run: |
pip install -U pip
pip install -r requirements.txt

if [ "$RUNNER_OS" == "macOS" ]; then
pip install --config-settings="--global-option=build_ext" \
Expand All @@ -51,8 +50,12 @@ jobs:
pygraphviz
elif [ "$RUNNER_OS" == "Linux" ]; then
pip install pygraphviz

fi

pip install -r requirements.txt
pip list

- name: Lint with precommit
run: |
pip install pre-commit
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# nx-guides is tested on the development branch of NetworkX
git+https://github.com/networkx/networkx@main

# Scientific Python (see networkx/requirements/default.txt)
# Dependencies for running the tutorials
numpy
scipy
matplotlib
pandas
ipython!=8.7.0
pygraphviz

# For testing and site generation
nbval
Expand Down
Loading