Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Removed persistent storage modules. #35

Merged
merged 2 commits into from
May 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def run_tests(self):
author_email="roland@catalogix.se",
license="Apache 2.0",
url='https://github.com/IdentityPython/oidcmsg/',
packages=["oidcmsg", "oidcmsg/oauth2", "oidcmsg/oidc", 'oidcmsg/storage'],
packages=["oidcmsg", "oidcmsg/oauth2", "oidcmsg/oidc"],
package_dir={"": "src"},
classifiers=[
"Development Status :: 4 - Beta",
Expand Down
2 changes: 1 addition & 1 deletion src/oidcmsg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Roland Hedberg"
__version__ = "1.3.2"
__version__ = "1.3.3"

import os
from typing import Dict
Expand Down
5 changes: 3 additions & 2 deletions src/oidcmsg/item.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from typing import List
from typing import Optional

from cryptojwt.utils import importer
from cryptojwt.utils import qualified_name

from oidcmsg.impexp import ImpExp
from oidcmsg.message import Message
from oidcmsg.storage import importer
from oidcmsg.storage.utils import qualified_name


class DLDict(ImpExp):
Expand Down
3 changes: 2 additions & 1 deletion src/oidcmsg/oidc/identity_assurance.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
import datetime
import json

from cryptojwt.utils import importer

from oidcmsg.message import OPTIONAL_MESSAGE
from oidcmsg.message import SINGLE_OPTIONAL_JSON
from oidcmsg.message import SINGLE_OPTIONAL_STRING
Expand All @@ -17,7 +19,6 @@
from oidcmsg.oidc import claims_request_deser
from oidcmsg.oidc import deserialize_from_one_of
from oidcmsg.oidc import msg_ser_json
from oidcmsg.storage import importer


class PlaceOfBirth(Message):
Expand Down
50 changes: 0 additions & 50 deletions src/oidcmsg/storage/__init__.py

This file was deleted.

Loading