Skip to content

Commit e351860

Browse files
committed
Fix formatting of environment markers in pyproject.toml.
1 parent 8220ab5 commit e351860

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ requires = [
44
"wheel>=0.36.2",
55
"pybind11>=2.12",
66
# Building with NumPy 2 allows backwards compatibility with NumPy 1:
7-
"numpy>=2; python_version >= 3.9",
8-
"numpy<2; python_version <= 3.8",
7+
'numpy>=2; python_version>="3.9"',
8+
'numpy<2; python_version<="3.8"',
99
]
1010

1111
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)