From 28d5a6fecc1a0e601472e0b5d504c52823b53256 Mon Sep 17 00:00:00 2001 From: decryptofy <96751659+decryptofy@users.noreply.github.com> Date: Wed, 20 Mar 2024 16:52:24 -0700 Subject: [PATCH] improving requirements compatibility across platforms --- pyproject.toml | 4 ++-- requirements.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d1716cf..a143611 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,11 +14,11 @@ description = "A high-performance SCA library for datasets that include NxM EM t readme = "README.md" requires-python = ">=3.10" dependencies = [ - 'numpy', + 'numpy<2', 'numba', 'zarr[jupyter]', 'ruff', - 'mpmath', + 'mpmath', ] license = {text = "MPL-2.0"} classifiers = [ diff --git a/requirements.txt b/requirements.txt index 424d257..200f5c0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -numpy +numpy<2 numba -zarr +zarr[jupyter] ruff mpmath