Skip to content

Commit

Permalink
Merge branch 'feat/ogc_deprecation' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksMat committed Jun 24, 2020
2 parents e4c8504 + dbc5c51 commit 8c0b222
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
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.4'
__version__ = '0.7.5'
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.3'
__version__ = '0.7.5'
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.4'
__version__ = '0.7.5'
2 changes: 1 addition & 1 deletion mask/eolearn/mask/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
from .utilities import resize_images
from .mask_counting import ClassFrequencyTask

__version__ = '0.7.3'
__version__ = '0.7.5'
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.4',
version='0.7.5',
description='Earth observation processing framework for machine learning in Python',
long_description=get_long_description(),
long_description_content_type='text/markdown',
Expand All @@ -33,12 +33,12 @@ def parse_requirements(file):
packages=[],
include_package_data=True,
install_requires=[
'eo-learn-core>=0.7.4',
'eo-learn-core>=0.7.5',
'eo-learn-coregistration>=0.7.3',
'eo-learn-features>=0.7.3',
'eo-learn-geometry>=0.7.3',
'eo-learn-io>=0.7.4',
'eo-learn-mask>=0.7.3',
'eo-learn-geometry>=0.7.5',
'eo-learn-io>=0.7.5',
'eo-learn-mask>=0.7.5',
'eo-learn-ml-tools>=0.7.3',
'eo-learn-visualization>=0.7.3'
],
Expand Down

0 comments on commit 8c0b222

Please sign in to comment.