diff --git a/scripts/python_dependencies.py b/scripts/python_dependencies.py index e56b3ef21..ebbec6b6b 100755 --- a/scripts/python_dependencies.py +++ b/scripts/python_dependencies.py @@ -210,10 +210,8 @@ def distutils_setup(): print("\"") def main(): - pyproject_toml() - - #if pyproject_toml(): - # distutils_setup() + if pyproject_toml(): + distutils_setup() if __name__ == '__main__': main()