diff --git a/requirements.txt b/requirements.txt index 2f585def9f19..2affc4d2215a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,11 +7,11 @@ build[uv] # for building sdist and wheel expecttest>=0.3.0 filelock -fsspec +fsspec>=0.8.5 hypothesis jinja2 lintrunner ; platform_machine != "s390x" -networkx +networkx>=2.5.1 optree>=0.13.0 psutil sympy>=1.13.3 diff --git a/setup.py b/setup.py index 232cf214d32e..076d3d1e7ec0 100644 --- a/setup.py +++ b/setup.py @@ -1233,9 +1233,9 @@ def main() -> None: "typing-extensions>=4.10.0", 'setuptools ; python_version >= "3.12"', "sympy>=1.13.3", - "networkx", + "networkx>=2.5.1", "jinja2", - "fsspec", + "fsspec>=0.8.5", ] if BUILD_PYTHON_ONLY: install_requires += [f"{LIBTORCH_PKG_NAME}=={TORCH_VERSION}"]