From 2124d2955f1bd1d8639b18363e3f95e397e40614 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Tue, 6 Feb 2024 09:59:51 -0500 Subject: [PATCH] refactor(dependencies): pin numpy<2 until other reqs support it --- etc/environment.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/environment.yml b/etc/environment.yml index b5d248a1a9..58bc7e8165 100644 --- a/etc/environment.yml +++ b/etc/environment.yml @@ -6,7 +6,7 @@ dependencies: # required - python>=3.8 - - numpy>=1.15.0 + - numpy>=1.15.0,<2.0.0 - matplotlib>=1.4.0 # lint diff --git a/pyproject.toml b/pyproject.toml index 4df77b77e5..6724591869 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ ] requires-python = ">=3.8" dependencies = [ - "numpy >=1.15.0", + "numpy >=1.15.0,<2.0.0", "matplotlib >=1.4.0", "pandas >=2.0.0" ]