Skip to content

Commit

Permalink
Update environment yml files
Browse files Browse the repository at this point in the history
to `conda install pysheds` and `pip install fcpgtools`, except that I had to turn off the later until it can support Py 3.11
  • Loading branch information
aufdenkampe committed Nov 8, 2023
1 parent 9e2b4cd commit 2a19d0c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 6 additions & 4 deletions environment_demo.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: data_accessor_full
channels:
- conda-forge
- pyviz
- nodefaults

# full env includes all dependencies for viz
Expand All @@ -16,7 +15,7 @@ dependencies:
- geopandas

# For API access and data formats
- cdsapi
- cdsapi # Copernicus Climate Data Store (CDS) API
- fsspec
- s3fs
- cfgrib
Expand All @@ -26,14 +25,13 @@ dependencies:
- h5netcdf
- openpyxl
- metpy
- pysheds

# Interactivity & Visualization (optional, but required for viz)
- jupyterlab
- ipympl
- nodejs
- cartopy

# Get holoviews libs from pyviz
- holoviews >=1.12.0
- hvplot
- geoviews >=1.6.2 # pinned to avoid this issue: https://github.com/holoviz/geoviews/issues/334
Expand All @@ -48,4 +46,8 @@ dependencies:
- conda-build # to self install library
- mamba
- conda-libmamba-solver # Faster env solver, https://conda.github.io/conda-libmamba-solver/
# 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
- pip:
# - fcpgtools # Holding until fcpgtools supports Py 3.11
4 changes: 4 additions & 0 deletions environment_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ dependencies:
- conda-build # to self install library
- mamba
- conda-libmamba-solver # Faster env solver, https://conda.github.io/conda-libmamba-solver/
# 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
- pip:
- fcpgtools

0 comments on commit 2a19d0c

Please sign in to comment.