Skip to content

Commit 34d50f1

Browse files
committedJul 6, 2020
version 0.7.6 and updated changelog
1 parent 5157148 commit 34d50f1

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [Version 0.7.6] - 2020-07-06
2+
- Added eo-learn dockerfiles and deployed official eo-learn docker images to [Docker Hub](https://hub.docker.com/r/sentinelhub/eolearn)
3+
- Added `compress` parameter to `ExportToTiff`, contributed by @atedstone
4+
- Minor fixes
5+
16
## [Version 0.7.5] - 2020-06-24
27
- Updated example notebooks - replaced OGC service tasks with Processing API service tasks
38
- Deprecated tasks that download data from Sentinel Hub OGC service

‎io/eolearn/io/__init__.py

+1-1
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.5'
12+
__version__ = '0.7.6'

‎setup.py

+3-3
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.5',
25+
version='0.7.6',
2626
description='Earth observation processing framework for machine learning in Python',
2727
long_description=get_long_description(),
2828
long_description_content_type='text/markdown',
@@ -37,10 +37,10 @@ def parse_requirements(file):
3737
'eo-learn-coregistration>=0.7.3',
3838
'eo-learn-features>=0.7.3',
3939
'eo-learn-geometry>=0.7.5',
40-
'eo-learn-io>=0.7.5',
40+
'eo-learn-io>=0.7.6',
4141
'eo-learn-mask>=0.7.5',
4242
'eo-learn-ml-tools>=0.7.3',
43-
'eo-learn-visualization>=0.7.3'
43+
'eo-learn-visualization>=0.7.6'
4444
],
4545
extras_require={
4646
'DEV': parse_requirements('requirements-dev.txt')

‎visualization/eolearn/visualization/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
except ImportError:
1111
pass
1212

13-
__version__ = '0.7.3'
13+
__version__ = '0.7.6'

0 commit comments

Comments
 (0)
Please sign in to comment.