Skip to content

Commit

Permalink
package versions bumped up to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksMat committed Jun 20, 2019
1 parent 242e907 commit f0ed8cd
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion core/eolearn/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
from .utilities import deep_eq, negate_mask, constant_pad, get_common_timestamps, bgr_to_rgb, FeatureParser


__version__ = '0.4.2'
__version__ = '0.5.0'
2 changes: 1 addition & 1 deletion coregistration/eolearn/coregistration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .coregistration import RegistrationTask, InterpolationType, ECCRegistration, PointBasedRegistration, \
ThunderRegistration

__version__ = '0.4.2'
__version__ = '0.5.0'
2 changes: 1 addition & 1 deletion features/eolearn/features/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
from .local_binary_pattern import LocalBinaryPatternTask


__version__ = '0.4.2'
__version__ = '0.5.0'
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.4.2'
__version__ = '0.5.0'
2 changes: 1 addition & 1 deletion io/eolearn/io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
from .geopedia import AddGeopediaFeature
from .local_io import ExportToTiff, ImportFromTiff

__version__ = '0.4.2'
__version__ = '0.5.0'
2 changes: 1 addition & 1 deletion mask/eolearn/mask/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from .masking import AddValidDataMaskTask, MaskFeature


__version__ = '0.4.2'
__version__ = '0.5.0'
2 changes: 1 addition & 1 deletion ml_tools/eolearn/ml_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
from .postprocessing import MorphologicalOperations, MorphologicalStructFactory, PostprocessingTask,\
MorphologicalFilterTask

__version__ = '0.4.2'
__version__ = '0.5.0'
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def parse_requirements(file):
setup(
name='eo-learn',
python_requires='>=3.5',
version='0.4.2',
version='0.5.0',
description='Earth observation processing framework for machine learning in Python',
long_description=get_long_description(),
long_description_content_type='text/markdown',
Expand All @@ -32,13 +32,13 @@ def parse_requirements(file):
packages=[],
include_package_data=True,
install_requires=[
'eo-learn-core>=0.4.2',
'eo-learn-coregistration>=0.4.2',
'eo-learn-features>=0.4.2',
'eo-learn-geometry>=0.4.2',
'eo-learn-io>=0.4.2',
'eo-learn-mask>=0.4.2',
'eo-learn-ml-tools>=0.4.2',
'eo-learn-core>=0.5.0',
'eo-learn-coregistration>=0.5.0',
'eo-learn-features>=0.5.0',
'eo-learn-geometry>=0.5.0',
'eo-learn-io>=0.5.0',
'eo-learn-mask>=0.5.0',
'eo-learn-ml-tools>=0.5.0',
'eo-learn-visualization>=0.5.0'
],
extras_require={
Expand Down

0 comments on commit f0ed8cd

Please sign in to comment.