Summary
Add support for the use of bearer authentication for package registry. This is to support the use of oauth2 authentication to a private Gitlab PyPy registry via a custom keyring provider. Currently having to use private access tokens to authenticate.
This works:
curl --header "Authorization: Bearer <oauth2_token>" "https://gitlab<self-host>.com/api/v4/groups/<package>/-/packages/pypi/simple/"
This does not work:
curl -u "oauth2:<oauth2_token>" "https://gitlab<self-host>.com/api/v4/groups/<package>/-/packages/pypi/simple/"
Example
No response
Summary
Add support for the use of bearer authentication for package registry. This is to support the use of oauth2 authentication to a private Gitlab PyPy registry via a custom keyring provider. Currently having to use private access tokens to authenticate.
This works:
This does not work:
Example
No response