diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e2ccf1c..717e53d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [Version 1.5.6] - 2024-06-26 + +- Limit `geopandas` version to < 1.0.0 + ## [Version 1.5.5] - 2024-06-19 - `SnowMaskTask` now correctly handles temporally empty eopatches. diff --git a/eolearn/__init__.py b/eolearn/__init__.py index ee64776c..8e917b72 100644 --- a/eolearn/__init__.py +++ b/eolearn/__init__.py @@ -1,6 +1,6 @@ """Main module of the `eolearn` package.""" -__version__ = "1.5.5" +__version__ = "1.5.6" import importlib.util import warnings diff --git a/pyproject.toml b/pyproject.toml index 7076751e..f159dace 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ dependencies = [ "boto3", "fs", "fs-s3fs", - "geopandas>=0.11.0", + "geopandas>=0.11.0,<1", "numpy>=1.20.0,<2", "python-dateutil", "sentinelhub>=3.9.0",