-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Update Python dependencies #15890
Update Python dependencies #15890
Conversation
This one is now ready to review/merge. |
@@ -47,7 +47,7 @@ | |||
linkerlengths = {} # type: ignore | |||
|
|||
# set to true if something really fishy is going on with the sequences | |||
stern_warning = True | |||
stern_warning = False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks innocent enough, but do we really want to apply these "fixes" to legacy code we aren't familiar with ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mvdbeek I was reluctant to fix this as well, but it was so clearly wrong (since the first commit of this code). I did some testing before pushing this using https://github.com/galaxyproject/galaxy-test-data/blob/master/2.sff and some other test data.
Before the changes, stern_warning
was always True, so the foundproblem
string was always printed to the tool stdout and the script was always exiting with status 1, but this is ignored by Galaxy because it's a legacy tool with no profile specified.
With these changes, the message is printed on the tool stdout a bit less often, but there is no other functional change since the exit code is still ignored by Galaxy.
520156d
to
c4a9f58
Compare
We should probably make sure galaxybot doesn't force push if there are commits by other people... |
This comment was marked as resolved.
This comment was marked as resolved.
bbb407f
to
64af46c
Compare
Green again, would be good to merge before the bot runs again on Saturday. |
Run
make update-dependencies
.