From 8d5280dc8e3ed93137583dd66420cb36fe79d920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDiga=20Luk=C5=A1i=C4=8D?= <31988337+zigaLuksic@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:11:56 +0200 Subject: [PATCH 1/2] Prepare for release of 3.11.1 (#544) --- CHANGELOG.MD | 6 ++++++ pyproject.toml | 3 +-- sentinelhub/_version.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 2b57442d..8519868c 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,7 +1,13 @@ +## [Version 3.11.1] - 2024-27-09 + +- Remove `numpy<2` restriction. + + ## [Version 3.11.0] - 2024-17-09 - Support for Batch Process API Version 2. + ## [Version 3.10.3] - 2024-13-08 - Monitoring a batch job now concludes if the batch job is cancelled. diff --git a/pyproject.toml b/pyproject.toml index 9e76f388..3100d5f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ dependencies = [ "aenum>=2.1.4", "click", "dataclasses-json", - "numpy<2", + "numpy", "oauthlib", "pillow>=9.2.0", "pyproj>=2.2.0", @@ -67,7 +67,6 @@ docs = [ "sphinx_rtd_theme==1.3.0", ] dev = [ - "basemap", "boto3-stubs>=1.20.0", "build", "click>=8.0.0", diff --git a/sentinelhub/_version.py b/sentinelhub/_version.py index 9ca6da25..4e48e1a8 100644 --- a/sentinelhub/_version.py +++ b/sentinelhub/_version.py @@ -1,3 +1,3 @@ """Version of the sentinelhub package.""" -__version__ = "3.11.0" +__version__ = "3.11.1" From 0ff5cc9122930264419225fab557493e3cd7c9a0 Mon Sep 17 00:00:00 2001 From: Ziga Luksic Date: Fri, 27 Sep 2024 09:25:23 +0200 Subject: [PATCH 2/2] fix changelog date format --- CHANGELOG.MD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 8519868c..87d9465b 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,20 +1,20 @@ -## [Version 3.11.1] - 2024-27-09 +## [Version 3.11.1] - 2024-09-27 - Remove `numpy<2` restriction. -## [Version 3.11.0] - 2024-17-09 +## [Version 3.11.0] - 2024-09-17 - Support for Batch Process API Version 2. -## [Version 3.10.3] - 2024-13-08 +## [Version 3.10.3] - 2024-08-13 - Monitoring a batch job now concludes if the batch job is cancelled. - The monitoring function now waits for the status of the batch job to change (even if all tiles have completed) before finalization in order to return the correct status. -## [Version 3.10.2] - 2024-24-04 +## [Version 3.10.2] - 2024-04-24 - Added `max_retries` parameter to `SHConfig` class. It controls how many times the client will attempt to re-download before raising `OutOfRequestsException`. It is set to `None` by default, in which case it never stops trying. Contributed by @Regan-Koopmans.