Skip to content

Commit

Permalink
Make binary modules conditional on Python version.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Nov 21, 2023
1 parent 39e0167 commit f72dabb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ sources = ["src/testbed"]
test_sources = ["tests"]

requires = [
"cryptography",
"lru_dict",
"pillow",
"numpy",
"pandas",
"cryptography; python_version < '3.13'",
"lru_dict; python_version < '3.13'",
"pillow; python_version < '3.13'",
"numpy; python_version < '3.13'",
"pandas; python_version < '3.13'",
]
test_requires = [
"pytest",
Expand Down

0 comments on commit f72dabb

Please sign in to comment.