Skip to content
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
10 changes: 10 additions & 0 deletions docs/release_notes/version_0.14_updates.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Version 0.14 Updates
/////////////////////////


Version 0.14.4
===============

Fixes
++++++

- Now, dependencies for GeoTIFF support are not installed when earthkit-data is installed with ``pip install earthkit-data[all]``. This step was necessary to make installation work when GDAL is not available. These dependencies need to be installed separately with ``pip install earthkit-data[geotiff]``. See :ref:`install`.


Version 0.14.3
===============

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies = [
"xarray>=0.19",
]
optional-dependencies.all = [
"earthkit-data[cds,covjsonkit,ecmwf-opendata,fdb,geo,geopandas,geotiff,mars,odb,polytope,projection,s3,wekeo]",
"earthkit-data[cds,covjsonkit,ecmwf-opendata,fdb,geo,geopandas,mars,odb,polytope,projection,s3,wekeo]",
]
optional-dependencies.cds = [ "cdsapi>=0.7.2" ]
optional-dependencies.ci = [ "numpy" ]
Expand Down
3 changes: 2 additions & 1 deletion tests/grib/test_grib_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def test_grib_dump(fl_type):
"data": {
# "Ni": 12,
# "Nj": 7,
"bitmapPresent": 0,
# "bitmapPresent": 0,
"latitudeOfFirstGridPointInDegrees": 90.0,
"longitudeOfFirstGridPointInDegrees": 0.0,
"latitudeOfLastGridPointInDegrees": -90.0,
Expand Down Expand Up @@ -547,6 +547,7 @@ def test_grib_dump(fl_type):
if ns == "geography":
d["data"].pop("Ni", None)
d["data"].pop("Nj", None)
d["data"].pop("bitmapPresent", None)
if ns not in ("default", "statistics"):
assert d == [x for x in ref if x["title"] == ns][0], ns

Expand Down
Loading