use latest pangeo docker image - #59
Conversation
|
@davidbrochart & @martindurant - I tried updating the docker image we are using to validate our intake catalog, and I am now getting some errors with the hydrosheds catalogs. Any chance you can look into this and figure out why they are failing? |
|
Trying to create a fresh conda environment, rasterio doesn't seem to install anymore. |
|
Might be related to conda-forge switching to Python 3.8. |
|
With the following environment: conda install python=3.7 ipython intake intake-xarray rasterio gcsfsThat works: import intake
cat_url = 'https://raw.githubusercontent.com/pangeo-data/pangeo-datastore/master/intake-catalogs/master.yaml'
cat = intake.Catalog(cat_url)
cat.hydro.hydrosheds_acc.to_dask() |
|
Looks like a (temporary) Google authentication problem to me. |
|
I restarted the build here (and updated to the latest image). Neither worked to resolve this. I'm leaning against the temporary auth problem but I don't know where else to look. |
|
The tests that are failing are related to the rasterio driver. Back then we worked around the issue by caching the data locally: intake/intake-xarray#31 (comment) |
|
There is no particular reason caching by intake doesn't won't work, although you may find things simpler when using the whole-file caching interface of fsspec directly |
|
It would be nice to have the pinned version of packages to be able to reproduce. |
Attempting to resolve the catalog build error in #58.