Determine dependency install order by their load_order value · Issue #945 · wbond/package_control · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, dependencies are installed by the order they are specified (iirc). In #942 I changed this to be in random order since I switched the required dependency list to a set. However, this will likely affect installation of packages with dependencies that depend on other dependencies, and the package author also should not be bothered to specify the required dependencies in the correct order.
Instead, I suggest to determine install order by the dependencies' load_order.
The text was updated successfully, but these errors were encountered:
Just a note that due to how dependency loading works this isn't a high priority because all that loader code does is add folders to sys.path but not actually import any of the code, with linux-ssl being the exception. Fortunately, that isn't required anymore since ST ships with proper ssl builds now.
Currently, dependencies are installed by the order they are specified (iirc). In #942 I changed this to be in random order since I switched the required dependency list to a set. However, this will likely affect installation of packages with dependencies that depend on other dependencies, and the package author also should not be bothered to specify the required dependencies in the correct order.
Instead, I suggest to determine install order by the dependencies' load_order.
The text was updated successfully, but these errors were encountered: