Dave Hirschfeld
Dave Hirschfeld
That would be fantastic. Let me know if you get it compiled for py3 - I'd be very keen to test it out!
That was 1.61 IIRC
Fair enough. Since it appears none of the deps specify a maximum version bound it probably doesn't hurt to keep it around for now. I'll let you decide if you...
The lack of async (specifically `trio`) support has so far stopped me investigating `ghapi` further. For managing rate limits `aiometer` could help: https://github.com/florimondmanca/aiometer
Is TACO similar to [`opt_einsum`](https://github.com/dgasmith/opt_einsum/)?
Thanks for the info! I was only vaguely aware of the project previously but it sounds like something I should keep an eye on...
I think I'm running into this. ``` In [165]: decoded.keys() Out[165]: dict_keys(['aud', 'iss', 'iat', 'nbf', 'exp', 'amr', 'email', 'family_name', 'given_name', 'ipaddr', 'name', 'oid', 'onprem_sid', 'preferred_username', 'rh', 'sub', 'tid', 'unique_name', 'upn',...
Naively changing the urls over to `v2.0` gives an error about scope: 
Continuing on the journey, the below was enough to get it to work: ``` c.AzureAdOAuthenticator.scope = ['openid'] ``` ...after which I could then get the group information: ```python In [176]:...
Reading the docs it seems this may be configurable in the application manifest: > *This is controllable by applications using the `accessTokenAcceptedVersion` setting in the app manifest, where null and...