Skip to content

Commit 432c1a2

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

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
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]

reacton/utils.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@
66
from typing import Callable, TypeVar, cast
77

88
import ipywidgets as widgets
9-
import typing_extensions
109

11-
P = typing_extensions.ParamSpec("P")
10+
try:
11+
from typing_extensions import ParamSpec
12+
P = ParamSpec("P")
13+
except ImportError:
14+
P = ...
15+
1216
T = TypeVar("T")
1317

1418

0 commit comments

Comments
 (0)