-
Notifications
You must be signed in to change notification settings - Fork 325
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
v1.1.6 unpin python packages #212
Merged
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7b088ef
unpin python packages
vincerubinetti eb0c16b
Update citations
vincerubinetti 45aaa26
bump to major
vincerubinetti 53036ab
update date
vincerubinetti 940d917
update packages too
vincerubinetti 1ddfe87
update package versions
vincerubinetti File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
manubot==0.5.5 | ||
PyYAML==6.0 | ||
diskcache==5.4.0 | ||
rich==12.6.0 | ||
python-dotenv==0.21.0 | ||
google-search-results==2.4.1 | ||
manubot==0.* | ||
PyYAML==6.* | ||
diskcache==5.* | ||
rich==12.* | ||
python-dotenv==0.* | ||
google-search-results==2.* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I apologize if you already know this and have a good reason for specifying them as you have, but anyway...
What you have here will typically select the most recent minor version, but I could imagine a few reasons for keeping the explicit minor version around:
The
~=
specifies that the version can be at or after the least significant field, i.e.~=1.1.5
would allow anything>= 1.1.5
but<1.2.0
(i.e. all patches >= current), and~=1.1
would allow anything>=1.1
but<2.0
(i.e. all minor versions >= current).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.
Yeah good idea. I'm not sure if I'm using any functions from any of the previous minor versions, but it's better to be safe. I just wanted to make sure the user is always on the latest non-major version without having to update, and this will satisfy that.
I'm also going to take to opportunity to update to the latest versions of all of them, and test that the citation process still works.
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.
Just tested greenelab.com locally with the new packages, both from scratch and with cached. Various orcid and id types (300+ citations), so probably the best stress test.
Only major version jump was for "rich", and their changelog doesn't mention any breaking changes that would affect us. dotenv has a major version upgrade, but apparently it drops support for python 3.7 and that's something I'd like to still provide.