Skip to content

Commit

Permalink
Fix formatting of environment markers in pyproject.toml.
Browse files Browse the repository at this point in the history
  • Loading branch information
psobot committed Jun 18, 2024
1 parent 8220ab5 commit e351860
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ requires = [
"wheel>=0.36.2",
"pybind11>=2.12",
# Building with NumPy 2 allows backwards compatibility with NumPy 1:
"numpy>=2; python_version >= 3.9",
"numpy<2; python_version <= 3.8",
'numpy>=2; python_version>="3.9"',
'numpy<2; python_version<="3.8"',
]

build-backend = "setuptools.build_meta"
Expand Down

0 comments on commit e351860

Please sign in to comment.