-
Notifications
You must be signed in to change notification settings - Fork 51
/
conda.yml
43 lines (41 loc) · 938 Bytes
/
conda.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
41
42
43
# This is a Conda environment file.
#
# Activating and installing this environment will provide all dependencies
# that are needed for full-feature development:
# - conda env create --file conda.yml
# - conda activate openpmd-api-dev
#
# If you need more packages in that environment, e.g. jupyter, run:
# - mamba install -y -c conda-forge jupyter jupyterlab dask-labextension
#
name: openpmd-api-dev
channels:
- conda-forge
dependencies:
- adios=*=mpi_openmpi_*
- adios2=*=mpi_openmpi_*
# - catch2 # shipped internally
- ccache
- curl
- cmake
- compilers
- dask
- doxygen
- git
- hdf5=*=mpi_openmpi_*
- mamba
- make
- mpi4py
- ninja
- numpy
- openmpi
- pandas
- pkg-config
- pip
- pre-commit
- pyarrow # for dask
# - pybind11 # shipped internally
- python>=3.8
# just a note for later hackery, we could install pip packages inside the env, too:
# - pip:
# - "-r requirements.txt"