Skip to content

Commit 43545cf

Browse files
authored
Prepare for release (#784)
* Update version and changelog * update hooks * fix date in changelog
1 parent 53dffc9 commit 43545cf

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ repos:
1313
- id: debug-statements
1414

1515
- repo: https://github.com/psf/black
16-
rev: 23.11.0
16+
rev: 23.12.1
1717
hooks:
1818
- id: black
1919
language_version: python3
2020

2121
- repo: https://github.com/charliermarsh/ruff-pre-commit
22-
rev: "v0.1.5"
22+
rev: "v0.1.11"
2323
hooks:
2424
- id: ruff
2525

2626
- repo: https://github.com/nbQA-dev/nbQA
27-
rev: 1.7.0
27+
rev: 1.7.1
2828
hooks:
2929
- id: nbqa-black
3030
- id: nbqa-ruff

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [Version 1.5.3] - 2024-01-10
2+
3+
- Fix `numpy<2` in anticipation of numpy 2.0 release.
4+
5+
16
## [Version 1.5.2] - 2023-11-07
27

38
- `RayExecutor` can now forward remote kwargs to ray jobs.

eolearn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Main module of the `eolearn` package."""
22

3-
__version__ = "1.5.2"
3+
__version__ = "1.5.3"
44

55
import importlib.util
66
import warnings

eolearn/core/eodata.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,9 @@ def __repr__(self) -> str:
445445
content = self[feature_type]
446446

447447
content = {k: content._get_unloaded(k) for k in content} # noqa: SLF001
448-
inner_content_repr = "\n ".join([
449-
f"{label}: {self._repr_value(value)}" for label, value in sorted(content.items())
450-
])
448+
inner_content_repr = "\n ".join(
449+
[f"{label}: {self._repr_value(value)}" for label, value in sorted(content.items())]
450+
)
451451
content_str = "{\n " + inner_content_repr + "\n }"
452452

453453
feature_repr_list.append(f"{feature_type.value}={content_str}")

examples/water-monitor/WaterMonitorWorkflow.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,9 @@
356356
" # we're only interested in the water within the dam borders\n",
357357
" water_masks = water_masks[..., np.newaxis] * eopatch.mask_timeless[\"NOMINAL_WATER\"]\n",
358358
"\n",
359-
" water_levels = np.asarray([\n",
360-
" np.count_nonzero(mask) / np.count_nonzero(eopatch.mask_timeless[\"NOMINAL_WATER\"]) for mask in water_masks\n",
361-
" ])\n",
359+
" water_levels = np.asarray(\n",
360+
" [np.count_nonzero(mask) / np.count_nonzero(eopatch.mask_timeless[\"NOMINAL_WATER\"]) for mask in water_masks]\n",
361+
" )\n",
362362
"\n",
363363
" eopatch[FeatureType.MASK, \"WATER_MASK\"] = water_masks\n",
364364
" eopatch[FeatureType.SCALAR, \"WATER_LEVEL\"] = water_levels[..., np.newaxis]\n",
@@ -646,7 +646,7 @@
646646
"name": "python",
647647
"nbconvert_exporter": "python",
648648
"pygments_lexer": "ipython3",
649-
"version": "3.10.4"
649+
"version": "3.8.10"
650650
},
651651
"vscode": {
652652
"interpreter": {

tests/core/test_utils/test_common.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ class ApplyToAxesTestCase:
9898
function=partial(np.flip, axis=0),
9999
data=np.arange(2 * 3 * 4).reshape((2, 3, 4)),
100100
spatial_axes=(1, 2),
101-
expected=np.array([
102-
[[8, 9, 10, 11], [4, 5, 6, 7], [0, 1, 2, 3]], [[20, 21, 22, 23], [16, 17, 18, 19], [12, 13, 14, 15]]
103-
]),
101+
expected=np.array(
102+
[[[8, 9, 10, 11], [4, 5, 6, 7], [0, 1, 2, 3]], [[20, 21, 22, 23], [16, 17, 18, 19], [12, 13, 14, 15]]]
103+
),
104104
),
105105
ApplyToAxesTestCase(
106106
function=lambda x: x + 1,

0 commit comments

Comments
 (0)