-
Notifications
You must be signed in to change notification settings - Fork 3.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
Upgrade to vendoring 1.2 #10583
Upgrade to vendoring 1.2 #10583
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,4 +54,6 @@ distro = [] | |
setuptools = "pkg_resources" | ||
|
||
[tool.vendoring.license.fallback-urls] | ||
CacheControl = "https://raw.githubusercontent.com/ionrock/cachecontrol/v0.12.6/LICENSE.txt" | ||
distlib = "https://bitbucket.org/pypa/distlib/raw/master/LICENSE.txt" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
webencodings = "https://github.com/SimonSapin/python-webencodings/raw/master/LICENSE" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've filed gsnedders/python-webencodings#28 for this. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,10 +70,7 @@ basepython = python3 | |
skip_install = True | ||
commands_pre = | ||
deps = | ||
vendoring~=1.0.0 | ||
# Required, otherwise we interpret --no-binary :all: as | ||
# "do not build wheels", which fails for PEP 517 requirements | ||
pip>=19.3.1 | ||
Comment on lines
-74
to
-76
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure about this (mainly because I don't understand why it was needed in the first place) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We get the newest version in the environment anyway? I don't think a pin for a version ~2 years old is super useful. |
||
vendoring~=1.2.0 | ||
whitelist_externals = git | ||
commands = | ||
# Check that the vendoring is up-to-date | ||
|
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.
cachecontrol has changed how they handle their license, and we'd need to update this URL when we upgrade -- or hope that they address psf/cachecontrol#255 prior to the next release.
I've added a note to the vendor.txt file as well, so that we don't forget. :)