From ab84958898364affefc578e9cb477728a3eab784 Mon Sep 17 00:00:00 2001 From: Henry Date: Thu, 20 Jun 2024 12:53:50 +0200 Subject: [PATCH] :pushpin: restrict to numpy<2 in PyPI package - 16.6.24 numpy 2 was released, some types have to be udpated, see #97 --- requirements.txt | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 392b9d5d..f7af3530 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ hydra-core>=1.2.0 -numpy>=1.21.5,<=2 +numpy>=1.21.5,<2 pandas>=1.4.2 torch>=1.11.0 matplotlib>=3.5.2 diff --git a/setup.cfg b/setup.cfg index 0e2ebec7..9ffaf9dd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,7 @@ version = attr: move.__version__ include_package_data = True install_requires = hydra-core - numpy + numpy<2 pandas torch matplotlib