mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 03:05:00 +00:00
clarified the networkx/scipy deps
This commit is contained in:
parent
80daa942f3
commit
82a59416d4
2 changed files with 12 additions and 4 deletions
|
@ -45,7 +45,7 @@ filelock==3.15.4
|
||||||
# via
|
# via
|
||||||
# -c requirements.txt
|
# -c requirements.txt
|
||||||
# virtualenv
|
# virtualenv
|
||||||
fonttools==4.53.0
|
fonttools==4.53.1
|
||||||
# via matplotlib
|
# via matplotlib
|
||||||
identify==2.5.36
|
identify==2.5.36
|
||||||
# via pre-commit
|
# via pre-commit
|
||||||
|
|
|
@ -28,9 +28,19 @@ watchdog
|
||||||
flake8
|
flake8
|
||||||
importlib_resources
|
importlib_resources
|
||||||
|
|
||||||
# v3.3 no longer works on python 3.9
|
# The proper depdendency is networkx[default], but this brings
|
||||||
|
# in matplotlib and a bunch of other deps
|
||||||
|
# https://github.com/networkx/networkx/blob/d7132daa8588f653eacac7a5bae1ee85a183fa43/pyproject.toml#L57
|
||||||
|
# We really only need networkx itself and scipy for the repomap.
|
||||||
|
# Pin below v3.3 to retain python 3.9 compatibility.
|
||||||
networkx<3.3
|
networkx<3.3
|
||||||
|
|
||||||
|
# This is the one networkx dependency that we need.
|
||||||
|
# Including it here explicitly because we
|
||||||
|
# didn't specify networkx[default] above.
|
||||||
|
# Pin below 1.14 to retain python 3.9 compatibility.
|
||||||
|
scipy<1.14
|
||||||
|
|
||||||
# v0.22.2 seems to break tree-sitter-languages?
|
# v0.22.2 seems to break tree-sitter-languages?
|
||||||
tree-sitter==0.21.3
|
tree-sitter==0.21.3
|
||||||
|
|
||||||
|
@ -39,5 +49,3 @@ tree-sitter==0.21.3
|
||||||
# Uses importlib-metadata
|
# Uses importlib-metadata
|
||||||
importlib-metadata<8.0.0
|
importlib-metadata<8.0.0
|
||||||
|
|
||||||
# To retain python 3.9 compatibility
|
|
||||||
scipy<1.14
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue