We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70718b commit 617e577Copy full SHA for 617e577
setup.py
@@ -28,7 +28,10 @@
28
author_email='huyng@yahoo-inc.com',
29
url='http://github.com/yahoo/graphkit',
30
packages=['graphkit'],
31
- install_requires=['networkx'],
+ install_requires=[
32
+ "networkx; python_version >= '3.5'",
33
+ "networkx == 2.2; python_version < '3.5'",
34
+ ],
35
extras_require={
36
'plot': ['pydot', 'matplotlib']
37
},
0 commit comments