./security/py-requests-oauthlib, OAuthlib support for Python-Requests

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.3.1, Package name: py311-requests-oauthlib-1.3.1, Maintainer: imil

This project provides first-class OAuth library support for Python Requests.


Required to run:
[devel/py-setuptools] [devel/py-requests] [security/py-oauthlib] [lang/python37]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 50.808 KB

Version history: (Expand)


CVS history: (Expand)


   2023-11-07 23:38:10 by Thomas Klausner | Files touched by this commit (112)
Log message:
*: latest py-sphinx only support Python 3.9+
   2022-02-06 20:04:17 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-requests-oauthlib: updated to 1.3.1

v1.3.1 (21 January 2022)
- Add initial support for OAuth Mutual TLS (draft-ietf-oauth-mtls)
- Add eBay compliance fix
- Add Spotify OAuth 2 Tutorial
- Add support for python 3.8, 3.9
- Fixed LinkedIn Compliance Fixes
- Fixed ReadTheDocs Documentation and sphinx errors
- Moved pipeline to GitHub Actions
   2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595)
Log message:
*: bump PKGREVISION for egg.mk users

They now have a tool dependency on py-setuptools instead of a DEPENDS
   2021-10-26 13:18:07 by Nia Alarie | Files touched by this commit (605)
Log message:
security: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Unfetchable distfiles (fetched conditionally?):
./security/cyrus-sasl/distinfo \ 
cyrus-sasl-dedad73e5e7a75d01a5f3d5a6702ab8ccd2ff40d.patch.v2
   2021-10-07 16:54:50 by Nia Alarie | Files touched by this commit (606)
Log message:
security: Remove SHA1 hashes for distfiles
   2021-03-07 18:16:51 by Adam Ciarcinski | Files touched by this commit (1)
Log message:
py-requests-oauthlib: mark as incompatible with Python 2.7
   2019-11-07 14:34:37 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-requests-oauthlib: updated to 1.3.0

1.3.0:
- Instagram compliance fix
- Added ``force_querystring`` argument to fetch_token() method on OAuth2Session
   2019-01-16 10:39:40 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-requests-oauthlib: updated to 1.2.0

v1.2.0:
This project now depends on OAuthlib 3.0.0 and above. It does not support \ 
versions of OAuthlib before 3.0.0.
Updated oauth2 tests to use 'sess' for an OAuth2Session instance instead of auth \ 
because OAuth2Session objects and methods acceept an auth paramether which is \ 
typically an instance of requests.auth.HTTPBasicAuth
OAuth2Session.fetch_token previously tried to guess how and where to provide \ 
"client" and "user" credentials incorrectly. This was \ 
incompatible with some OAuth servers and incompatible with breaking changes in \ 
oauthlib that seek to correctly provide the client_id. The older implementation \ 
also did not raise the correct exceptions when username and password are not \ 
present on Legacy clients.
Avoid automatic netrc authentication for OAuth2Session.

v1.1.0:
Adjusted version specifier for oauthlib dependency: this project is not yet \ 
compatible with oauthlib 3.0.0.
Dropped dependency on nose.
Minor changes to clean up the code and make it more readable/maintainable.