Skip to content

Commit 1a157d4

Browse files
committed
Fixup setup.py for cwltool and bioblend changes.
1 parent 508dce7 commit 1a157d4

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@
2626
'cwltool',
2727
]
2828

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

3433

3534
test_requirements = [
@@ -91,7 +90,6 @@
9190
'planemo_ext': 'planemo_ext'},
9291
include_package_data=True,
9392
install_requires=requirements,
94-
dependency_links=dependency_links,
9593
license="AFL",
9694
zip_safe=False,
9795
keywords='planemo',

0 commit comments

Comments
 (0)