Skip to content

Commit b8f8c0d

Browse files
committed
feat: relax typing_extensions version constraint
1 parent 16518bf commit b8f8c0d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = {file = "LICENSE"}
1111
dynamic = ["version", "description"]
1212
dependencies = [
1313
"ipywidgets",
14-
"typing_extensions >= 4.1.1",
14+
"typing_extensions >= 3.7.0",
1515
]
1616

1717
classifiers = [

reacton/core.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
import ipywidgets
4141
import ipywidgets as widgets
4242
import traitlets
43-
import typing_extensions
4443
from typing_extensions import Literal, Protocol
4544

4645
import reacton.logging # noqa: F401 # has sidefx
@@ -87,7 +86,12 @@ def get():
8786
V = TypeVar("V") # used for value type of widget
8887
V2 = TypeVar("V2") # used for value type of widget
8988
E = TypeVar("E") # used for elements
90-
P = typing_extensions.ParamSpec("P")
89+
90+
try:
91+
from typing_extensions import ParamSpec
92+
P = ParamSpec("P")
93+
except ImportError:
94+
P = ...
9195

9296
WidgetOrList = Union[widgets.Widget, List[widgets.Widget]]
9397
EffectCleanupCallable = Callable[[], None]

0 commit comments

Comments
 (0)