-
Notifications
You must be signed in to change notification settings - Fork 23
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: #49 allow newer version of dependencies #57
Conversation
@jwa5426 Please holler if this looks sane to you. |
requirements-dev.txt
Outdated
pylint>=2.6.0 | ||
responses>=0.12.0 | ||
unittest-xml-reporting>=3.0.4 |
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.
Oof, I hate seeing stuff like this. Why do we have to do it? We can't just pin to a known version?
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.
Seems fine to pin to specific dev deps, as I'm guessing that will not interfere with Jake being used to scan projects. I will push some changes to lock these dev dep version down (as they used to be).
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.
Dev deps locked: 5189624
@bhamail I agree with preventing the click 8.0.0 issue, I actually ran into that as well. For some of the other non-issue ones maybe it is a good idea to keep them pinned to known good versions or at least a tighter range. |
@bhamail seems reasonable to me 👍 |
Allow newer version of dependencies.
The
click
library had failures when the very recently released v8.0.0 was used, so I added an upper bound to solve that issue for now.Also fixed an error due to db.purge deprecation, replaced with db.truncate call.
cc @bhamail / @DarthHater