⬆️ Resolve networkx python package 3.6 version issue.#312
Open
BBBela wants to merge 1 commit intofacebookresearch:mainfrom
Open
⬆️ Resolve networkx python package 3.6 version issue.#312BBBela wants to merge 1 commit intofacebookresearch:mainfrom
BBBela wants to merge 1 commit intofacebookresearch:mainfrom
Conversation
…ch#16) * Resolve networkx python package 3.6 version issue. HTA has the requirement that networkx package should be greater than or equal to 3.1 version. For some reason, the version 3.6 of networkx package causes HTA to fails during critical path analysis. What is interesting, the version 3.6.1 of networkx package works fine with HTA. Therefore, to avoid the installation of the problematic version 3.6, we exclude it in the requirements.txt file. Issue in networkx repository: networkx/networkx#8367 Signed-off-by: Benedykt Bela <[email protected]> * Change comment. Signed-off-by: Benedykt Bela <[email protected]> --------- Signed-off-by: Benedykt Bela <[email protected]>
tsocha
approved these changes
Dec 17, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
HTA has the requirement in
requirements.txt:The 3.6 version of
networkxpackage has a bug described in this issue: networkx ISSUEThat causes the Critical Path Analysis to fail when networkx package version is 3.6.
The next version fixed that bug, so the networkx==3.6.1 works fine.
This PR adds excluding networkx version 3.6 from requirements.
Before submitting