Skip to content

Commit 8737e8e

Browse files
committed
Increase scikit-learn version granularity
This is needed to continue Python 3.7 support.
1 parent 6414293 commit 8737e8e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='modularitypruning',
12-
version='1.2.0',
12+
version='1.2.1',
1313
package_dir={'modularitypruning': 'utilities'},
1414
packages=['modularitypruning'],
1515
url='https://github.com/ragibson/ModularityPruning',
@@ -37,7 +37,9 @@
3737
"numpy<1.22.0; python_version<'3.8'",
3838
"numpy; python_version>='3.8'",
3939
'psutil', 'python-igraph',
40+
"scikit-learn; python_version>='3.8'",
41+
"scikit-learn<1.1; python_version<'3.8'",
4042
"scipy<1.8; python_version<'3.8'",
4143
"scipy; python_version>='3.8'",
42-
'seaborn', 'sklearn']
44+
'seaborn']
4345
)

0 commit comments

Comments
 (0)