From f1e76258084f2211023eb56311e242ba117a20e0 Mon Sep 17 00:00:00 2001 From: Matej Trojak Date: Tue, 21 Feb 2023 09:35:25 +0100 Subject: [PATCH] Pin matchms dependency --- conda/environment-dev.yml | 2 +- conda/environment.yml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conda/environment-dev.yml b/conda/environment-dev.yml index 2fab0c9..f6b90ab 100644 --- a/conda/environment-dev.yml +++ b/conda/environment-dev.yml @@ -6,7 +6,7 @@ channels: dependencies: - autopep8 - numpy - - matchms >=0.14.0 + - matchms >=0.14.0,<0.18.0 - pint >=0.17,<0.20 - pip - pandas diff --git a/conda/environment.yml b/conda/environment.yml index d1f1acb..3c041d4 100644 --- a/conda/environment.yml +++ b/conda/environment.yml @@ -5,7 +5,7 @@ channels: - defaults dependencies: - numpy - - matchms >=0.14.0 + - matchms >=0.14.0,<0.18.0 - pandas - pint >=0.17,<0.20 - python >=3.7 diff --git a/setup.py b/setup.py index c74947d..94c1633 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ test_suite="tests", python_requires='>=3.7', install_requires=[ - "matchms>=0.14.0", + "matchms>=0.14.0,<0.18.0", "numpy", "pandas", "pint>=0.17,<0.20",