-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
6008 update urllib3 #6010
6008 update urllib3 #6010
Conversation
Closes: docker#6008 Signed-off-by: Bastian Venthur <bastian.venthur@flixbus.com>
This is required as version 2.19 has a hardcoded dependency on urllib3 < 1.23 Signed-off-by: Bastian Venthur <bastian.venthur@flixbus.com>
@shin- Hello again! Does this look fine? Many of us would like to use the newest version of |
Please sign your commits following these rules: $ git clone -b "6008-update-urllib3" git@github.com:venthur/compose.git somewhere
$ cd somewhere
$ git rebase -i HEAD~842354429472
editor opens
change each 'pick' to 'edit'
save the file and quit
$ git commit --amend -s --no-edit
$ git rebase --continue # and repeat the amend for each commit
$ git push -f Amending updates the existing PR. You DO NOT need to open a new one. |
Signed-off-by: Bastian Venthur <bastian.venthur@flixbus.com>
c336eff
to
9ee51e9
Compare
Refreshed the patch. |
@shin- Can you please take one last look at this? |
@shin- Can you please take a final look? |
@ofek This is rude, please stop. I've seen the issue. As I mentioned, we need to be careful updating requests/urllib3 because it can have unexpected side effects. For example, this new version of Once I'm confident in the viability of the upgrade, I'll happily push the button ; until then, Compose works just fine with |
Being rude was not my intention! Often times I receive so many notifications that I miss a few and I assumed this was a similar situation. I'm sorry buddy. This is the first I've heard of the deprecation; let me think of a compromise. |
@ofek No harm done! FWIW, I'm currently working on updating dependencies on the SDK end of things, including support for Python 3.7 while retaining support for 3.3; once that hurdle is clear, it'll be much easier to transition these upgrades to Compose. |
Ah, very interesting! I'll have to test it but I think I see a way forward. |
Closing via #6092 |
Updated urllib3 requirements to version 1.23 (the current one). Since the requests version we depend on has a hardcoded dependency on
urllib3 < 1.23
but will be updated next week, I've also updated the requirement to the next version of therequests
package.Since this requests version does not exist yet, the build for this PR will fail until the new
requests
version is released.Resolves #6008