Skip to content

Commit 747149b

Browse files
committed
Fix pypy testing
1 parent c9d45c1 commit 747149b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[build-system]
22
requires = [
33
'maturin>=1,<2',
4-
'typing-extensions==4.6.3',
4+
'typing-extensions >=4.6.0; platform_python_implementation != "PyPy"',
5+
'typing-extensions >=4.6.0,<4.7.0; platform_python_implementation == "PyPy"'
56
]
67
build-backend = 'maturin'
78

tests/requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,3 @@ pytest-pretty==1.1.1
99
pytest-timeout==2.1.0
1010
pydantic==1.10.4;python_version>="3.8"
1111
pytz==2022.7.1
12-
typing-extensions >=4.6.0; platform_python_implementation != "PyPy"
13-
typing-extensions >=4.6.0,<4.7.0; platform_python_implementation == "PyPy"

0 commit comments

Comments
 (0)