Skip to content
This repository has been archived by the owner on Feb 12, 2025. It is now read-only.

Fix logging and update conda env #115

Merged
merged 2 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ channels:
- conda-forge
- defaults
dependencies:
- aiohttp
- cftime
- numpy>=1.16
- xarray>=0.15
- dask>=2.6
- cftime
- netCDF4>=1.4
- python-dateutil>=2.8.1
- cf_xarray>=0.3.1 # Note that conda-forge package is cf_xarray (!= cf-xarray)
- netCDF4>=1.4
- fsspec
- zarr
- zstandard
4 changes: 0 additions & 4 deletions roocs_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,5 @@
import os


LOG_LEVEL = "INFO"
logging.basicConfig(level=LOG_LEVEL)


for env_var, value in CONFIG["environment"].items():
os.environ[env_var.upper()] = value
Loading