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

fix pygraphviz installation issue #539

Closed
edublancas opened this issue Feb 4, 2022 · 1 comment
Closed

fix pygraphviz installation issue #539

edublancas opened this issue Feb 4, 2022 · 1 comment
Labels
good first issue Good for newcomers

Comments

@edublancas
Copy link
Contributor

See #538

recent versions of pygraphviz only work with python 3.8 and higher, however, they didn't pin the dependency and raise an error instead. we should find what's the most recent version that works with python 3.7 and lower, and pin it. But do not pin it if running >=3.8 (there's a way to specify these rules in setup.py)

@edublancas edublancas added the good first issue Good for newcomers label Feb 4, 2022
@edublancas
Copy link
Contributor Author

pygraphviz 1.8 dropped support for python 3.7

Solution:

pip install 'pygraphviz<1.8'

or:

conda install 'pygraphviz<1.8' -c conda-forge"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant