Relax dependency on requests-oauthlib
See original GitHub issueIn your requirements.txt you depend on requests_oauthlib>=0.8.0<2.0
, but in your setup.py, it says:
install_requires=[
'requests >= 2.20.0, == 2.*',
'requests_oauthlib >= 0.8.0, == 0.8.*',
'six >= 1.10, == 1.*'
],
Why is there a difference between the two? This is forcing our project to use 0.8.0
, which makes using this library impossible, because another dependency requires requests-oauthlib>=1.0.0
.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:7 (6 by maintainers)
Top Results From Across the Web
requests-oauthlib - PyPI
This project provides first-class OAuth library support for Requests. The OAuth 1 workflow. OAuth 1 can seem overly complicated and it sure has...
Read more >OAuth 2 Workflow — Requests-OAuthlib 1.3.1 documentation
requests -oauthlib provides three methods of obtaining refresh tokens. All of these are dependent on you specifying an accurate expires_in in the token....
Read more >OAuthlib support for Python-Requests! - GitHub
This project provides first-class OAuth library support for Requests. The OAuth 1 workflow. OAuth 1 can seem overly complicated and it sure has...
Read more >oauthlib - Python Package Health Analysis - Snyk
A generic, spec-compliant, thorough implementation of the OAuth request-signing logic For more information about how to use this package see README.
Read more >Linkedin OAuth2 Example Walkthrough with Python Requests ...
Requests/ requests - oauthlib docs: https:// requests - oauthlib.readthedocs.io/en/latest/index.htmlRequests/requests-ouathlib repo: ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you @w8s for the PR. I merged it in. If either of you can’t use the repo version and need a new release asap, let me know. Otherwise I’ll do the release in early january.
EDIT: Actually our automated builds are working. I’ll go ahead and push a patch release now.
Thanks so much for the quick response and resolution! I will test tomorrow and let you know.