Skip to content

Commit 07af4a2

Browse files
committed
version 0.7.7
1 parent e5e57d6 commit 07af4a2

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [Version 0.7.7] - 2020-08-03
2+
- Support for `geopandas` version `0.8.0`
3+
- Added a [notebook](https://github.com/sentinel-hub/eo-learn/blob/develop/examples/custom-script/machine-learning-evalscript.ipynb) with an end-to-end example on how to transform a ML-model into an evalscript and run it with Sentinel Hub service
4+
- Added `eolearn.features.ClusteringTask`, contributed by @bsircelj
5+
- An option to define a custom log filter for `EOExecutor`
6+
- Data mask obtained by `SentinelHubInputTask` has now boolean type instead of uint8
7+
- Updates of some example notebooks
8+
- A few minor fixes
9+
110
## [Version 0.7.6] - 2020-07-06
211
- Added eo-learn dockerfiles and deployed official eo-learn docker images to [Docker Hub](https://hub.docker.com/r/sentinelhub/eolearn)
312
- Added `compress` parameter to `ExportToTiff`, contributed by @atedstone

core/eolearn/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from .utilities import deep_eq, negate_mask, constant_pad, get_common_timestamps, bgr_to_rgb, FeatureParser
1919

2020

21-
__version__ = '0.7.5'
21+
__version__ = '0.7.7'

features/eolearn/features/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
from .clustering import ClusteringTask
2020

2121

22-
__version__ = '0.7.3'
22+
__version__ = '0.7.7'

geometry/eolearn/geometry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from .superpixel import SuperpixelSegmentation, FelzenszwalbSegmentation, SlicSegmentation, MarkSegmentationBoundaries
88
from .transformations import VectorToRaster, RasterToVector
99

10-
__version__ = '0.7.5'
10+
__version__ = '0.7.7'

io/eolearn/io/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
from .local_io import ExportToTiff, ImportFromTiff
1010
from .processing_api import SentinelHubInputTask, SentinelHubDemTask, SentinelHubInputBase, get_available_timestamps
1111

12-
__version__ = '0.7.6'
12+
__version__ = '0.7.7'

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def parse_requirements(file):
2222
setup(
2323
name='eo-learn',
2424
python_requires='>=3.6',
25-
version='0.7.6',
25+
version='0.7.7',
2626
description='Earth observation processing framework for machine learning in Python',
2727
long_description=get_long_description(),
2828
long_description_content_type='text/markdown',
@@ -33,11 +33,11 @@ def parse_requirements(file):
3333
packages=[],
3434
include_package_data=True,
3535
install_requires=[
36-
'eo-learn-core>=0.7.5',
36+
'eo-learn-core>=0.7.7',
3737
'eo-learn-coregistration>=0.7.3',
38-
'eo-learn-features>=0.7.3',
39-
'eo-learn-geometry>=0.7.5',
40-
'eo-learn-io>=0.7.6',
38+
'eo-learn-features>=0.7.7',
39+
'eo-learn-geometry>=0.7.7',
40+
'eo-learn-io>=0.7.7',
4141
'eo-learn-mask>=0.7.5',
4242
'eo-learn-ml-tools>=0.7.3',
4343
'eo-learn-visualization>=0.7.6'

0 commit comments

Comments
 (0)