-
Notifications
You must be signed in to change notification settings - Fork 48
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
Library now requires requests >= 2.18.0 #29
Comments
@nkeriks Thanks for bringing this up, we've had similar issues in @jonparrott WDYT is the right move here? |
Add an optional with requests >= 2.18.0? |
@jonparrott Will that enforce the lower bound when users just It's probably worth asking @nkeriks how he came about this realization. |
I had an initialization script that was pip installing various packages (including google cloud python libraries) into a conda python environment. Not the greatest idea in general, but this usually handles dependencies fine. |
No
…On Fri, Aug 11, 2017, 4:31 PM Danny Hermes ***@***.***> wrote:
@jonparrott <https://github.com/jonparrott> Will that enforce the lower
bound when users just pip install google-resumable-media without the
extras.
It's probably worth asking @nkeriks <https://github.com/nkeriks> how he
came about this realization.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#29 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAPUc2XGbSjJXoOmrLUPD3svyJhcjLLLks5sXORlgaJpZM4O1N8p>
.
|
@nkeriks Ahh that makes sense, thanks for the info. FWIW
|
The optional as well as the fix in google-cloud-python should be sufficient. |
Hi - this recent change uses the
requests.models.Response
object as a context manager, which is only added in recent versions (>= 2.18.0) of the requests libraryWhile this is a year old version of requests, it would be good to have this requirement made explicit. Notably conda still packages requests 2.14.2 only.
The text was updated successfully, but these errors were encountered: