From 8b3af1b3b83ed03a944abc254978fae3d099c6b2 Mon Sep 17 00:00:00 2001 From: Andrew Nolan Date: Thu, 5 Sep 2024 11:00:02 -0600 Subject: [PATCH] Remove version from `Pooch` to avoid redundant copies of data. --- mosaic/datasets.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mosaic/datasets.py b/mosaic/datasets.py index 772c7d9..7beffb3 100644 --- a/mosaic/datasets.py +++ b/mosaic/datasets.py @@ -5,8 +5,6 @@ import xarray as xr from xarray import Dataset -from mosaic.version import __version__ - # this dictionary uses the short handed mesh names for convience, # but can not be parsed by pooch registry = { @@ -39,9 +37,6 @@ path=pooch.os_cache("mosaic"), # The remote data is from LCRC base_url="https://web.lcrc.anl.gov/public/e3sm", - version=__version__, - # If this is a development version, get the data from the "main" branch - version_dev="main", registry=_registry)