File tree 3 files changed +13
-5
lines changed
3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ license = {file = "LICENSE"}
11
11
dynamic = [" version" , " description" ]
12
12
dependencies = [
13
13
" ipywidgets" ,
14
- " typing_extensions >= 4.1.1 " ,
14
+ " typing_extensions >= 3.7.0 " ,
15
15
]
16
16
17
17
classifiers = [
Original file line number Diff line number Diff line change 40
40
import ipywidgets
41
41
import ipywidgets as widgets
42
42
import traitlets
43
- import typing_extensions
44
43
from typing_extensions import Literal , Protocol
45
44
46
45
import reacton .logging # noqa: F401 # has sidefx
@@ -87,7 +86,12 @@ def get():
87
86
V = TypeVar ("V" ) # used for value type of widget
88
87
V2 = TypeVar ("V2" ) # used for value type of widget
89
88
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 = ...
91
95
92
96
WidgetOrList = Union [widgets .Widget , List [widgets .Widget ]]
93
97
EffectCleanupCallable = Callable [[], None ]
Original file line number Diff line number Diff line change 6
6
from typing import Callable , TypeVar , cast
7
7
8
8
import ipywidgets as widgets
9
- import typing_extensions
10
9
11
- P = typing_extensions .ParamSpec ("P" )
10
+ try :
11
+ from typing_extensions import ParamSpec
12
+ P = ParamSpec ("P" )
13
+ except ImportError :
14
+ P = ...
15
+
12
16
T = TypeVar ("T" )
13
17
14
18
You can’t perform that action at this time.
0 commit comments