Skip to content

Commit

Permalink
version 0.8.1, updated dependecies
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksMat committed Mar 5, 2021
1 parent e0f74ba commit 23d61f8
Show file tree
Hide file tree
Showing 9 changed files with 16 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 @@ -18,4 +18,4 @@
from .utilities import deep_eq, negate_mask, constant_pad, get_common_timestamps, bgr_to_rgb, FeatureParser


__version__ = '0.8.0'
__version__ = '0.8.1'
2 changes: 1 addition & 1 deletion features/eolearn/features/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
from .doubly_logistic_approximation import DoublyLogisticApproximationTask


__version__ = '0.8.0'
__version__ = '0.8.1'
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.8.0'
__version__ = '0.8.1'
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.8.0'
__version__ = '0.8.1'
1 change: 1 addition & 0 deletions io/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
eo-learn-core
sentinelhub>=3.2.0
rasterio<=1.1.8
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.8.0'
__version__ = '0.8.1'
2 changes: 1 addition & 1 deletion mask/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
eo-learn-core
s2cloudless>=1.3.0
s2cloudless>=1.5.0
opencv-contrib-python-headless
joblib
scikit-learn>=0.19.0,<0.24
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 @@ -10,4 +10,4 @@
MorphologicalFilterTask
from .train_test_split import TrainTestSplitTask

__version__ = '0.8.0'
__version__ = '0.8.1'
16 changes: 8 additions & 8 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.8.0',
version='0.8.1',
description='Earth observation processing framework for machine learning in Python',
long_description=get_long_description(),
long_description_content_type='text/markdown',
Expand All @@ -33,13 +33,13 @@ def parse_requirements(file):
packages=[],
include_package_data=True,
install_requires=[
'eo-learn-core>=0.8.0',
'eo-learn-coregistration>=0.8.0',
'eo-learn-features>=0.8.0',
'eo-learn-geometry>=0.8.0',
'eo-learn-io>=0.8.0',
'eo-learn-mask>=0.8.0',
'eo-learn-ml-tools>=0.8.0',
'eo-learn-core>=0.8.1',
'eo-learn-coregistration>=0.8.1',
'eo-learn-features>=0.8.1',
'eo-learn-geometry>=0.8.1',
'eo-learn-io>=0.8.1',
'eo-learn-mask>=0.8.1',
'eo-learn-ml-tools>=0.8.1',
'eo-learn-visualization>=0.8.0'
],
extras_require={
Expand Down

0 comments on commit 23d61f8

Please sign in to comment.