Skip to content

Commit 2775b6b

Browse files
zigaLuksicMatic Lubej
andauthored
Prepare for release (#771)
* increase version * update changelog * update pre-commit hooks --------- Co-authored-by: Matic Lubej <[email protected]>
1 parent 5d699d0 commit 2775b6b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+89
-3
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ repos:
1313
- id: debug-statements
1414

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

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

CHANGELOG.md

Lines changed: 7 additions & 0 deletions

eolearn/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Main module of the `eolearn` package."""
2-
__version__ = "1.5.1"
2+
3+
__version__ = "1.5.2"
34

45
import importlib.util
56
import warnings

eolearn/core/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
The following objects and functions are the core of eo-learn package
33
"""
4+
45
from .constants import FeatureType, OverwritePermission
56
from .core_tasks import (
67
AddFeatureTask,

eolearn/core/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
This source code is licensed under the MIT license, see the LICENSE file in the root directory of this source tree.
88
"""
9+
910
from __future__ import annotations
1011

1112
import warnings

eolearn/core/core_tasks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
This source code is licensed under the MIT license, see the LICENSE file in the root directory of this source tree.
88
"""
9+
910
from __future__ import annotations
1011

1112
import copy

eolearn/core/eodata.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
This source code is licensed under the MIT license, see the LICENSE file in the root directory of this source tree.
88
"""
9+
910
from __future__ import annotations
1011

1112
import concurrent.futures

eolearn/core/eodata_io.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
This source code is licensed under the MIT license, see the LICENSE file in the root directory of this source tree.
88
"""
9+
910
from __future__ import annotations
1011

1112
import concurrent.futures

eolearn/core/eodata_merge.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
This source code is licensed under the MIT license, see the LICENSE file in the root directory of this source tree.
88
"""
9+
910
from __future__ import annotations
1011

1112
import datetime as dt

eolearn/core/eoexecution.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
1111
This source code is licensed under the MIT license, see the LICENSE file in the root directory of this source tree.
1212
"""
13+
1314
from __future__ import annotations
1415

1516
import concurrent.futures

0 commit comments

Comments
 (0)