forked from TUW-GEO/pytesmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yml
40 lines (39 loc) · 959 Bytes
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# List of conda and pip packages that should be installed when developing the packages
# To create the full conda environment: ``conda env create -f environment.yml``
# All *required* packages should also be in setup.cfg!
name: pytesmo
channels:
- defaults
- conda-forge
dependencies:
- numpy<=1.23.5 # v1.24 not yet supported by numba
- scipy>=0.12
- pandas>=0.11.0,!=0.15.2
- netcdf4>=1.0.1,!=1.6.2 # at v1.6.2 only defaults channel worked properly
- cython>=0.29.21
- scikit-learn
- pykdtree
- pyresample
- numba
- matplotlib>=1.2.0
# optional, for documentation and testing:
- nb_conda
- ipykernel
- pip
- pip:
- pynetcf>=0.4.0
- pygeogrids
- pygeobase>=0.6.0
- more_itertools
- build
- repurpose>=0.7.1
- cadati>=0.0.2
# optional, for documentation and testing:
- ascat>=2.0
- ismn>=1.2.0
- pytest
- pytest-cov
- pytest-mpl
- pre-commit
- flake8
- yapf