Skip to content

Commit

Permalink
Fixup setup.py for cwltool and bioblend changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Nov 2, 2015
1 parent 508dce7 commit 1a157d4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@
'cwltool',
]

# Latest stable bioblend does not support Python 3, setup dev dependency.
dependency_links = []
if sys.version_info[0] != 2:
dependency_links = ['git://github.com/galaxyproject/bioblend#egg=bioblend']
# Only import cwltool for Python 2.
if sys.version_info[0] == 2:
requirements.append("cwltool")


test_requirements = [
Expand Down Expand Up @@ -91,7 +90,6 @@
'planemo_ext': 'planemo_ext'},
include_package_data=True,
install_requires=requirements,
dependency_links=dependency_links,
license="AFL",
zip_safe=False,
keywords='planemo',
Expand Down

0 comments on commit 1a157d4

Please sign in to comment.