Skip to content

Commit f72dabb

Browse files
committed
Make binary modules conditional on Python version.
1 parent 39e0167 commit f72dabb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ sources = ["src/testbed"]
1919
test_sources = ["tests"]
2020

2121
requires = [
22-
"cryptography",
23-
"lru_dict",
24-
"pillow",
25-
"numpy",
26-
"pandas",
22+
"cryptography; python_version < '3.13'",
23+
"lru_dict; python_version < '3.13'",
24+
"pillow; python_version < '3.13'",
25+
"numpy; python_version < '3.13'",
26+
"pandas; python_version < '3.13'",
2727
]
2828
test_requires = [
2929
"pytest",

0 commit comments

Comments
 (0)