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
Describe the bug It would appear that editable dependencies are installed in linear order instead of reverse dependencies
To Reproduce Do a fresh install of revolve2 through the student_install.sh script. This fails.
student_install.sh
Expected behavior Do a fresh install of revolve2 through the student_install.sh script. This succeeds.
Screenshots You can check the dependency tree with:
d=dependencies.dot; echo 'digraph {' > $d; find . -name 'pyproject.toml' | xargs grep '^revolve2-' | cut -d ' ' -f 1 | tr '_' '-' | sed 's|.*/\([^/]*\).pyproject.toml:revolve2-\(.*\)| "\1" -> "\2";|' >> $d echo '}' >> $d cat $d dot -Tpng $d -o $(basename $d .dot).png
Platform:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
It would appear that editable dependencies are installed in linear order instead of reverse dependencies
To Reproduce
Do a fresh install of revolve2 through the
student_install.sh
script. This fails.Expected behavior
Do a fresh install of revolve2 through the
student_install.sh
script. This succeeds.Screenshots
You can check the dependency tree with:
Platform:
The text was updated successfully, but these errors were encountered: