From 24b29e42ad02e0169f5c2e297fd03b017fd18ae4 Mon Sep 17 00:00:00 2001 From: Talley Lambert Date: Sun, 13 Mar 2022 13:26:46 -0400 Subject: [PATCH] use == --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6305aa2..fd9675e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,10 +4,10 @@ requires = [ "wheel", "cython", "numpy", - "numpy==1.14.5; python_version<'3.8'", - "numpy==1.17.3; python_version<'3.9'", - "numpy==1.19.3; python_version<'3.10'", - "numpy==1.21.3; python_version<'3.11'", + "numpy==1.14.5; python_version=='3.7'", + "numpy==1.17.3; python_version=='3.8'", + "numpy==1.19.3; python_version=='3.9'", + "numpy==1.21.3; python_version=='3.10'", ] build-backend = "setuptools.build_meta"