forked from respec/HSPsquared
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment_dev.yml
45 lines (39 loc) · 1.88 KB
/
environment_dev.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
44
45
name: hsp2_py39_dev
channels:
- conda-forge
# - nodefaults
dependencies:
# Aligned with Anaconda 2021.11 (Nov 17, 2021); exception with HDF5 & PyTables
# package management
- conda
- conda-build
- pip
# Running HSP2
- python =3.9*
- scipy # Scipy also installs numpy
- pandas =1.3.* # Pandas installs most scientific Python modules, such as Numpy, etc.
- numba =0.54.*
- numpy =1.20.* # for compatibility with numba version <0.54
- hdf5 =1.12.* # latest compatible with both versions of pytables & h5py below
# - pytables =3.7.* # 3.7 not yet on conda-forge
- h5py >=3.3
- hdf5plugin # HDF5 compression filters for h5py & jupyterlab_hdf
- dask
# Interactivity & Visualization via Jupyter Notebooks (optional, but required for tutorials)
- jupyterlab >=3.2.* # also installs classic Jupyter notbook
- nodejs # required for many JupyterLab extensions
- nb_conda # Conda environment & package access extension from within Jupyter
# HoloViz, https://holoviz.org
- hvplot # hvPlot installs most HoloViz libs, including matplotlib
- ipywidgets # Required for HoloViz interactivity in Jupyter notebooks
# Dev tools (optional)
- python-language-server
- jupyter-lsp-python # Includes both the server extension (jupyter-lsp) and pyls third-party server (python-language-server)
- jupyterlab-lsp # Docs at https://github.com/krassowski/jupyterlab-lsp
# PIP install requirements only if it is not possible with conda
# https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#using-pip-in-an-environment
- pip:
- tables ==3.7.* # pytables 3.7 not yet on conda-forge
# Optional, but recommended for tutorials
- lckr-jupyterlab-variableinspector # https://github.com/lckr/jupyterlab-variableInspector
- jupyterlab_hdf # Explore HDF5 files in JupyterLab. https://github.com/jupyterlab/jupyterlab-hdf5