From 90b55ed3a4b314ad5688cf6591b51e992a4f266f Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Thu, 19 Dec 2019 23:04:51 +0100 Subject: [PATCH] Unpin numpy for Py>=3.7. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7683b81ae2..169722638e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,8 +11,8 @@ requires = [ "numpy; python_version=='2.7'", "numpy==1.13.3; python_version=='3.5'", "numpy==1.13.3; python_version=='3.6'", - "numpy==1.14.5; python_version>='3.7'", + "numpy>=1.14.5; python_version>='3.7'", ] [tools.setuptools_scm] -write_to = "vispy/version.py" \ No newline at end of file +write_to = "vispy/version.py"