From ff689a52f05d6e9d12fbd36baa389e03801b3a17 Mon Sep 17 00:00:00 2001 From: Frederike Duembgen Date: Fri, 5 Apr 2024 13:25:47 +0200 Subject: [PATCH] Add environment.yml, remove fixed scipy version --- environment.yml | 12 ++++++++++++ requirements.txt | 3 ++- setup.cfg | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 environment.yml diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..fb11d5d --- /dev/null +++ b/environment.yml @@ -0,0 +1,12 @@ +name: polymat +channels: + - defaults + - conda-forge + - anaconda +dependencies: + - python=3.10 + - pip=22.3 + + - pip: + - -r requirements.txt + - -e . diff --git a/requirements.txt b/requirements.txt index 7eef7d6..8f69501 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ pandas>=1.5.3 numpy>=1.24.1 -scipy>=1.10.0 pytest>=7.2.1 matplotlib>=3.6.2 +scipy +pytest-cov diff --git a/setup.cfg b/setup.cfg index fb9472b..c3e41a5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,7 @@ license = { file="LICENSE" } [options] packages = find: install_requires= - scipy==1.10.0 + scipy [options.packages.find] # do not mistake tests/ for a package directory exclude=_test*