Skip to content

Commit

Permalink
version 0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksMat committed Aug 3, 2020
1 parent e5e57d6 commit 07af4a2
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [Version 0.7.7] - 2020-08-03
- Support for `geopandas` version `0.8.0`
- 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
- Added `eolearn.features.ClusteringTask`, contributed by @bsircelj
- An option to define a custom log filter for `EOExecutor`
- Data mask obtained by `SentinelHubInputTask` has now boolean type instead of uint8
- Updates of some example notebooks
- A few minor fixes

## [Version 0.7.6] - 2020-07-06
- Added eo-learn dockerfiles and deployed official eo-learn docker images to [Docker Hub](https://hub.docker.com/r/sentinelhub/eolearn)
- Added `compress` parameter to `ExportToTiff`, contributed by @atedstone
Expand Down
2 changes: 1 addition & 1 deletion core/eolearn/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
from .utilities import deep_eq, negate_mask, constant_pad, get_common_timestamps, bgr_to_rgb, FeatureParser


__version__ = '0.7.5'
__version__ = '0.7.7'
2 changes: 1 addition & 1 deletion features/eolearn/features/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
from .clustering import ClusteringTask


__version__ = '0.7.3'
__version__ = '0.7.7'
2 changes: 1 addition & 1 deletion geometry/eolearn/geometry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
from .superpixel import SuperpixelSegmentation, FelzenszwalbSegmentation, SlicSegmentation, MarkSegmentationBoundaries
from .transformations import VectorToRaster, RasterToVector

__version__ = '0.7.5'
__version__ = '0.7.7'
2 changes: 1 addition & 1 deletion io/eolearn/io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
from .local_io import ExportToTiff, ImportFromTiff
from .processing_api import SentinelHubInputTask, SentinelHubDemTask, SentinelHubInputBase, get_available_timestamps

__version__ = '0.7.6'
__version__ = '0.7.7'
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def parse_requirements(file):
setup(
name='eo-learn',
python_requires='>=3.6',
version='0.7.6',
version='0.7.7',
description='Earth observation processing framework for machine learning in Python',
long_description=get_long_description(),
long_description_content_type='text/markdown',
Expand All @@ -33,11 +33,11 @@ def parse_requirements(file):
packages=[],
include_package_data=True,
install_requires=[
'eo-learn-core>=0.7.5',
'eo-learn-core>=0.7.7',
'eo-learn-coregistration>=0.7.3',
'eo-learn-features>=0.7.3',
'eo-learn-geometry>=0.7.5',
'eo-learn-io>=0.7.6',
'eo-learn-features>=0.7.7',
'eo-learn-geometry>=0.7.7',
'eo-learn-io>=0.7.7',
'eo-learn-mask>=0.7.5',
'eo-learn-ml-tools>=0.7.3',
'eo-learn-visualization>=0.7.6'
Expand Down

0 comments on commit 07af4a2

Please sign in to comment.