From b7bf093ae2fc9389ef3d0df5957061ff7eb191eb Mon Sep 17 00:00:00 2001 From: Ali Khan Date: Mon, 24 Jul 2023 10:51:47 -0400 Subject: [PATCH] add version pins to fix deprecation issues Some packages now require additional version pins to avoid deprecation errors. With this change, the tutorial notebooks should now run to completion after a pip install. --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index eb504f2..e79cf2e 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,13 @@ PACKAGES = find_packages() install_requires = [ - "pandas", + "pandas<1.5", "python-louvain==0.11", - "numpy", + "numpy<1.20.0", + "matplotlib<3.6", "scikit-learn", "scipy", - "networkx>=2.2", + "networkx>=2.2,<3", "seaborn", "forceatlas2", "nilearn==0.5.2"]