From ccd3adee59ab56c392908f769c1fdab71ac306b0 Mon Sep 17 00:00:00 2001 From: Doug Latornell Date: Sun, 12 Jan 2025 11:05:19 -0800 Subject: [PATCH] Add et_xmlfile, openpyxl, & tqdm to environment files These dependencies were added to multiple environment YAML files and `pyproject.toml` to support the refactored SalishSeaTools package. --- envs/environment-dev.yaml | 3 +++ envs/environment-fig-dev.yaml | 3 +++ envs/environment-linkcheck.yaml | 3 +++ envs/environment-prod.yaml | 3 +++ envs/environment-test.yaml | 3 +++ pyproject.toml | 3 +++ 6 files changed, 18 insertions(+) diff --git a/envs/environment-dev.yaml b/envs/environment-dev.yaml index 576fb98f..ba10dc43 100644 --- a/envs/environment-dev.yaml +++ b/envs/environment-dev.yaml @@ -35,6 +35,7 @@ dependencies: - coloredlogs - dask - docutils + - et_xmlfile - f90nml - feedgen - flox @@ -49,6 +50,7 @@ dependencies: - netcdf4 - numpy - numpy-indexed + - openpyxl - pandas - paramiko - pillow @@ -70,6 +72,7 @@ dependencies: - structlog - supervisor - tenacity + - tqdm - utm - verboselogs - watchdog diff --git a/envs/environment-fig-dev.yaml b/envs/environment-fig-dev.yaml index 42fc05a6..720cd12d 100644 --- a/envs/environment-fig-dev.yaml +++ b/envs/environment-fig-dev.yaml @@ -31,6 +31,7 @@ dependencies: - coloredlogs - dask - docutils + - et_xmlfile - gitpython - gsw - h5netcdf @@ -42,6 +43,7 @@ dependencies: - netcdf4 - numpy - numpy-indexed + - openpyxl - pandas - paramiko - pillow @@ -55,6 +57,7 @@ dependencies: - requests - scipy - sentry-sdk + - tqdm - verboselogs - watchdog - xarray diff --git a/envs/environment-linkcheck.yaml b/envs/environment-linkcheck.yaml index c2e6b873..aa95da36 100644 --- a/envs/environment-linkcheck.yaml +++ b/envs/environment-linkcheck.yaml @@ -23,6 +23,7 @@ dependencies: - coloredlogs - dask - docutils + - et_xmlfile - f90nml - feedgen - flox @@ -37,6 +38,7 @@ dependencies: - netcdf4 - numpy - numpy-indexed + - openpyxl - pandas - paramiko - pillow @@ -57,6 +59,7 @@ dependencies: - structlog - supervisor - tenacity + - tqdm - utm - verboselogs - watchdog diff --git a/envs/environment-prod.yaml b/envs/environment-prod.yaml index 05d3aa68..4f3cf573 100644 --- a/envs/environment-prod.yaml +++ b/envs/environment-prod.yaml @@ -35,6 +35,7 @@ dependencies: - coloredlogs - dask - docutils + - et_xmlfile - f90nml - feedgen - flox @@ -49,6 +50,7 @@ dependencies: - netcdf4 - numpy - numpy-indexed + - openpyxl - pandas - paramiko - pillow @@ -70,6 +72,7 @@ dependencies: - structlog - supervisor - tenacity + - tqdm - utm - verboselogs - watchdog diff --git a/envs/environment-test.yaml b/envs/environment-test.yaml index cfa2ca09..60198004 100644 --- a/envs/environment-test.yaml +++ b/envs/environment-test.yaml @@ -23,6 +23,7 @@ dependencies: - coloredlogs - dask - docutils + - et_xmlfile - f90nml - feedgen - flox @@ -36,6 +37,7 @@ dependencies: - netcdf4 - numpy - numpy-indexed + - openpyxl - pandas - paramiko - pillow @@ -56,6 +58,7 @@ dependencies: - structlog - supervisor - tenacity + - tqdm - utm - verboselogs - watchdog diff --git a/pyproject.toml b/pyproject.toml index 7e0ef466..e0b17b6c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,6 +54,7 @@ dependencies = [ "cmocean", "dask", "docutils", + "et_xmlfile", "f90nml", "feedgen", "flox", @@ -68,6 +69,7 @@ dependencies = [ "netcdf4", "numpy", "numpy-indexed", + "openpyxl", "pandas", "paramiko", "pillow", @@ -86,6 +88,7 @@ dependencies = [ "supervisor", "sysrsync", "tenacity", + "tqdm", "utm", "watchdog", "xarray",