Skip to content

Commit 4f4fd88

Browse files
authored
Release 3.11.1, Merge pull request #545 from sentinel-hub/develop
Release 3.11.1
2 parents 938a875 + 0ff5cc9 commit 4f4fd88

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.MD

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1-
## [Version 3.11.0] - 2024-17-09
1+
## [Version 3.11.1] - 2024-09-27
2+
3+
- Remove `numpy<2` restriction.
4+
5+
6+
## [Version 3.11.0] - 2024-09-17
27

38
- Support for Batch Process API Version 2.
49

5-
## [Version 3.10.3] - 2024-13-08
10+
11+
## [Version 3.10.3] - 2024-08-13
612

713
- Monitoring a batch job now concludes if the batch job is cancelled.
814
- 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.
915

1016

11-
## [Version 3.10.2] - 2024-24-04
17+
## [Version 3.10.2] - 2024-04-24
1218

1319
- 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.
1420

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies = [
4040
"aenum>=2.1.4",
4141
"click",
4242
"dataclasses-json",
43-
"numpy<2",
43+
"numpy",
4444
"oauthlib",
4545
"pillow>=9.2.0",
4646
"pyproj>=2.2.0",
@@ -67,7 +67,6 @@ docs = [
6767
"sphinx_rtd_theme==1.3.0",
6868
]
6969
dev = [
70-
"basemap",
7170
"boto3-stubs>=1.20.0",
7271
"build",
7372
"click>=8.0.0",

sentinelhub/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version of the sentinelhub package."""
22

3-
__version__ = "3.11.0"
3+
__version__ = "3.11.1"

0 commit comments

Comments
 (0)