File tree Expand file tree Collapse file tree 6 files changed +10
-6
lines changed Expand file tree Collapse file tree 6 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 21
21
- ' 3.7'
22
22
- ' 3.8'
23
23
- ' 3.9'
24
+ - ' 3.10'
24
25
25
26
steps :
26
27
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 8
8
9
9
Implementation of everything OIDC and OAuth2.
10
10
11
- idpyoidc is the 2nd layer in the
12
- JwtConnect stack (cryptojwt, idpyoidc)
11
+ idpyoidc is the 2nd layer in the JwtConnect stack (cryptojwt, idpyoidc)
13
12
14
13
Please read the [ Official Documentation] ( https://idpyoidc.readthedocs.io/ ) for getting usage examples and further informations.
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
7
8
8
[metadata ]
9
9
name = " idpyoidc"
10
- version = " 1.0.0 "
10
+ version = " 1.0.1 "
11
11
author = " Roland Hedberg"
12
12
author_email =
" [email protected] "
13
13
description = " Everything OAuth2 and OIDC"
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ def run_tests(self):
50
50
setup (
51
51
name = "idpyoidc" ,
52
52
version = version ,
53
- description = "Python implementation of OAuth2 and OpenID Connect messages " ,
53
+ description = "Python implementation of everything OAuth2 and OpenID Connect" ,
54
54
long_description = README ,
55
55
long_description_content_type = 'text/markdown' ,
56
56
author = "Roland Hedberg" ,
Original file line number Diff line number Diff line change 1
1
__author__ = "Roland Hedberg"
2
- __version__ = "1.0.0 "
2
+ __version__ = "1.0.1 "
3
3
4
4
import os
5
5
from typing import Dict
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ def __init__(
189
189
continue
190
190
191
191
if key not in DEFAULT_EXTENDED_CONF :
192
- logger .warning (f"{ key } not seems to be a valid configuration parameter" )
192
+ logger .warning (f"{ key } does not seems to be a valid configuration parameter" )
193
193
elif not _val :
194
194
logger .warning (f"{ key } not configured, using default configuration values" )
195
195
@@ -334,6 +334,10 @@ def __init__(
334
334
"refresh_token" ,
335
335
],
336
336
},
337
+ "claims_interface" : {
338
+ "class" : "idpyoidc.server.session.claims.ClaimsInterface" ,
339
+ "kwargs" : {}
340
+ },
337
341
"cookie_handler" : {
338
342
"class" : "idpyoidc.server.cookie_handler.CookieHandler" ,
339
343
"kwargs" : {
You can’t perform that action at this time.
0 commit comments