We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Package broken due to updates in SageMath
from train_track import * a=FreeGroupAutomorphism('a->bCb,b->Bc,c->BcBa') G=a.train_track()
>>> (...) ImportError: cannot import name 'DiGraph' from 'sage.graphs.graph' (/usr/lib/python3.12/site-packages/sage/graphs/graph.py)
This can be fixed by replacing line 32 in inverse_graph.py with from sage.graphs.digraph import DiGraph
from sage.graphs.digraph import DiGraph
The text was updated successfully, but these errors were encountered:
More precisely, this was modified by PR #36736.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Package broken due to updates in SageMath
This can be fixed by replacing line 32 in inverse_graph.py with
from sage.graphs.digraph import DiGraph
The text was updated successfully, but these errors were encountered: