From e351860300d737d2fb661ec8ef706e72b721128c Mon Sep 17 00:00:00 2001 From: Peter Sobot Date: Tue, 18 Jun 2024 12:59:07 -0400 Subject: [PATCH] Fix formatting of environment markers in pyproject.toml. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bba9d5eb..69add7b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"