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 findPythonDeps.py script for cyclic dependencies #4633

Merged
merged 1 commit into from
Sep 25, 2024

Commits on Sep 13, 2024

  1. Fix findPythonDeps for cyclic dependencies

    There might be situations where the same dependency comes up multiple times
    which leads to a cycle in the detection.
    That might be due to a cyclic dependency or just some "unfortunate" structure
    between packages.
    Remove the recursive call leading to a possible error and maintain a set of packages
    checked already to avoid checking any multiple times.
    This makes sure the function terminates eventually.
    Flamefire committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    84786cb View commit details
    Browse the repository at this point in the history