Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(core): pin cwltool to lower version as newer version is broken #2350

Merged
merged 1 commit into from Sep 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -162,7 +162,7 @@ def run(self):
"click>=7.0,<8.0.2",
"cryptography>=3.4.1,<3.5",
"cwlgen>=0.4.0,<=0.4.2",
"cwltool>=3.1.20210816212154,<3.2",
"cwltool>=3.1.20210816212154,<3.1.20210921111717",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might have been better to just exclude the problematic release with !=3.1.20210921111717 :-)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, thanks for the tip!

"cwl-utils>=0.10",
"environ_config>=18.2.0,<21.3.0",
"filelock>=3.0.0,<=3.0.12",
Expand Down