Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/hotfixes' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
fit-alessandro-berti committed Apr 22, 2024
2 parents 128120c + e703d7c commit 68dd348
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
numpy<2
pandas<3
wheel
setuptools
pandas
deprecation
networkx
graphviz
wheel
setuptools
intervaltree
lxml
matplotlib
Expand Down
4 changes: 2 additions & 2 deletions requirements_complete.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ kiwisolver
lxml
matplotlib
networkx
numpy<2
numpy
packaging
pandas<3
pandas
pillow
pydotplus
pyparsing
Expand Down
5 changes: 3 additions & 2 deletions third_party/generate_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,13 @@ def get_all_third_party_dependencies(package_name, deps, packages_dictio):
if UPDATE_OTHER_FILES:
F = open("../requirements_complete.txt", "w")
for x in packages:
if x[0] == "numpy":
"""if x[0] == "numpy":
F.write("%s<2\n" % (x[0]))
elif x[0] == "pandas":
F.write("%s<3\n" % (x[0]))
else:
F.write("%s\n" % (x[0]))
F.write("%s\n" % (x[0]))"""
F.write("%s\n" % (x[0]))
F.close()
F = open("../requirements_stable.txt", "w")
for x in packages:
Expand Down

0 comments on commit 68dd348

Please sign in to comment.