We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63342d commit 76695b2Copy full SHA for 76695b2
tests/plugins/plugins.py
@@ -1,5 +1,6 @@
1
from typing import Any, List, Optional, Union
2
3
+from supertokens_python.constants import VERSION
4
from supertokens_python.plugins import (
5
OverrideMap,
6
PluginDependenciesOkResponse,
@@ -111,7 +112,7 @@ def plugin_factory(
111
112
113
class Plugin(SuperTokensPlugin):
114
id: str = identifier
- compatible_sdk_versions: Union[str, List[str]] = ["0.30.0"]
115
+ compatible_sdk_versions: Union[str, List[str]] = [VERSION]
116
override_map: Optional[OverrideMap] = override_map_obj
117
init: Any = init_fn
118
dependencies: Optional[SuperTokensPluginDependencies] = dependency_factory(deps)
0 commit comments