Skip to content

Commit d05f587

Browse files
committed
Cleaned up some more bits.
1 parent 70389d6 commit d05f587

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.github/workflows/python-app.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- '3.7'
2222
- '3.8'
2323
- '3.9'
24+
- '3.10'
2425

2526
steps:
2627
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
Implementation of everything OIDC and OAuth2.
1010

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)
1312

1413
Please read the [Official Documentation](https://idpyoidc.readthedocs.io/) for getting usage examples and further informations.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[metadata]
99
name = "idpyoidc"
10-
version = "1.0.0"
10+
version = "1.0.1"
1111
author = "Roland Hedberg"
1212
author_email = "[email protected]"
1313
description = "Everything OAuth2 and OIDC"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def run_tests(self):
5050
setup(
5151
name="idpyoidc",
5252
version=version,
53-
description="Python implementation of OAuth2 and OpenID Connect messages",
53+
description="Python implementation of everything OAuth2 and OpenID Connect",
5454
long_description=README,
5555
long_description_content_type='text/markdown',
5656
author="Roland Hedberg",

src/idpyoidc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = "Roland Hedberg"
2-
__version__ = "1.0.0"
2+
__version__ = "1.0.1"
33

44
import os
55
from typing import Dict

src/idpyoidc/server/configure.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def __init__(
189189
continue
190190

191191
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")
193193
elif not _val:
194194
logger.warning(f"{key} not configured, using default configuration values")
195195

@@ -334,6 +334,10 @@ def __init__(
334334
"refresh_token",
335335
],
336336
},
337+
"claims_interface": {
338+
"class": "idpyoidc.server.session.claims.ClaimsInterface",
339+
"kwargs": {}
340+
},
337341
"cookie_handler": {
338342
"class": "idpyoidc.server.cookie_handler.CookieHandler",
339343
"kwargs": {

0 commit comments

Comments
 (0)