Skip to content

Commit 76695b2

Browse files
committed
fix: plugin test version prop
1 parent d63342d commit 76695b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/plugins/plugins.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from typing import Any, List, Optional, Union
22

3+
from supertokens_python.constants import VERSION
34
from supertokens_python.plugins import (
45
OverrideMap,
56
PluginDependenciesOkResponse,
@@ -111,7 +112,7 @@ def plugin_factory(
111112

112113
class Plugin(SuperTokensPlugin):
113114
id: str = identifier
114-
compatible_sdk_versions: Union[str, List[str]] = ["0.30.0"]
115+
compatible_sdk_versions: Union[str, List[str]] = [VERSION]
115116
override_map: Optional[OverrideMap] = override_map_obj
116117
init: Any = init_fn
117118
dependencies: Optional[SuperTokensPluginDependencies] = dependency_factory(deps)

0 commit comments

Comments
 (0)