Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

environment.yml: handle variant and newer condas better #1334

Merged
merged 9 commits into from
Apr 24, 2024
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: environment.yml
environment-file: environment-minimal.yml
activate-environment: caiman

- name: Install OS Dependencies
Expand Down
10 changes: 7 additions & 3 deletions environment-minimal.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
channels:
- conda-forge
- defaults
dependencies:
- python <=3.12
- av
- cython
- future
- h5py
- h5py >=3.4.0
- holoviews >=1.16.2
- ipython
- ipyparallel
- ipywidgets
- matplotlib
- moviepy
- numpy <2.0.0
- nose
- numpy <2.0.0,>=1.26
- numpydoc
- opencv
- peakutils
- pims
- psutil
- pynwb
- scikit-image >=0.19.0
Expand Down
5 changes: 3 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
channels:
- conda-forge
- defaults
dependencies:
- python <=3.12
- av
- bokeh >=3.1.1
- coverage
- cython
- h5py
- h5py >=3.4.0
- holoviews >=1.16.2
- ipykernel
- ipython
Expand All @@ -17,7 +18,7 @@ dependencies:
- moviepy
- mypy
- nose
- numpy <2.0.0
- numpy <2.0.0,>=1.26
- numpydoc
- opencv
- panel >=1.0.2
Expand Down
Loading