Skip to content

Commit

Permalink
setup: fix networkx reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop authored Oct 17, 2019
1 parent 4171aac commit 50fc721
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def run(self):


install_requires = [
"networkx>=2.1,<2.3",
"ply>=3.9", # See https://github.com/pyinstaller/pyinstaller/issues/1945
"configparser>=3.5.0",
"future>=0.16.0",
Expand Down Expand Up @@ -78,11 +79,6 @@ def run(self):
"win-unicode-console>=0.5; sys_platform == 'win32'",
]

if sys.version_info[0] == 2:
install_requires.append("networkx>=2.1,<2.3")
else:
install_requires.append("networkx>=2.1")

# Extra dependencies for remote integrations

gs = ["google-cloud-storage==1.19.0"]
Expand Down

0 comments on commit 50fc721

Please sign in to comment.