File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
[build-system ]
2
- requires = [' maturin>=1,<2' , ' typing_extensions' ]
2
+ requires = [
3
+ ' maturin>=1,<2' ,
4
+ ' typing-extensions >=4.6.0; platform_python_implementation != "pypy"' ,
5
+ ' typing-extensions >=4.6.0,<4.7.0; platform_python_implementation == "pypy"'
6
+ ]
3
7
build-backend = ' maturin'
4
8
5
9
[project ]
@@ -29,7 +33,8 @@ classifiers = [
29
33
' Typing :: Typed' ,
30
34
]
31
35
dependencies = [
32
- ' typing-extensions==4.6.3' ,
36
+ ' typing-extensions >=4.6.0; platform_python_implementation != "pypy"' ,
37
+ ' typing-extensions >=4.6.0,<4.7.0; platform_python_implementation == "pypy"'
33
38
]
34
39
dynamic = [
35
40
' description' ,
Original file line number Diff line number Diff line change @@ -33,8 +33,6 @@ def dict_not_none(**kwargs: Any) -> Any:
33
33
34
34
ExtraBehavior = Literal ['allow' , 'forbid' , 'ignore' ]
35
35
36
- assert False , TypedDict
37
-
38
36
39
37
class CoreConfig (TypedDict , total = False ):
40
38
"""
Original file line number Diff line number Diff line change @@ -9,4 +9,3 @@ pytest-pretty==1.1.1
9
9
pytest-timeout == 2.1.0
10
10
pydantic == 1.10.4 ;python_version >= "3.8"
11
11
pytz == 2022.7.1
12
- typing_extensions == 4.6.3
You can’t perform that action at this time.
0 commit comments