From ddbf92ec497c214cf638318fbd6d9f4f1396f0ca Mon Sep 17 00:00:00 2001 From: BRAUN REMI Date: Mon, 22 Jan 2024 09:15:51 +0100 Subject: [PATCH] FIX: Update setup.py to have all the needed dependencies listed in requirements.txt #9 --- CHANGES.md | 6 +++++- requirements.txt | 23 ++++++++++++++++------- setup.py | 2 +- 3 files changed, 22 insertions(+), 9 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b20a89a..74b10ab 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Release History +## 1.34.x (2024-MM-DD) + +- FIX: Update `setup.py` to have all the needed dependencies listed in `requirements.txt` ([#9](https://github.com/sertit/sertit-utils/issues/9)) + ## 1.34.1 (2024-01-17) - FIX: Update `arcpy.init_conda_arcpy_env` to fix new issues (`GDAL` `InvalidVersion` when writing on disk with `geopandas` using `fiona`'s engine) @@ -202,7 +206,7 @@ ## 1.21.0 (2022-12-13) -- **ENH: Add the possibility to load an image/geo window in `rasters(_rio).read`** ([#1](https://github.com/sertit/eoreader/issues/1)) +- **ENH: Add the possibility to load an image/geo window in `rasters(_rio).read`** ([#1](https://github.com/sertit/sertit-utils/issues/1)) ## 1.20.3 (2022-11-30) diff --git a/requirements.txt b/requirements.txt index 284242b..dc5a307 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,16 +12,25 @@ tempenv # Deploy twine -# Libs for all platforms -cloudpathlib[all]>=0.10.0 -dill +# -- Libs for all platforms +# Base tqdm -psutil lxml +dill +psutil +geopandas>=0.11.0 +cloudpathlib[all]>=0.10.0 +xarray>=0.18.0 +shapely >= 2.0.0 + +# Colorlog colorlog + +# rasters_rio rasterio>=1.3.0 -xarray>=0.18.0 + +# rasters rioxarray>=0.4.0 -geopandas>=0.11.0 + +# dask dask[complete]>=2021.10.0 -shapely >= 2.0.0 diff --git a/setup.py b/setup.py index 53bb912..03db5db 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ "dill", "psutil", "geopandas>=0.11.0", - "cloudpathlib[all]", + "cloudpathlib[all]>=0.10.0", "xarray>=0.18.0", ], extras_require={