Skip to content

Commit 23d61f8

Browse files
committed
version 0.8.1, updated dependecies
1 parent e0f74ba commit 23d61f8

File tree

9 files changed

+16
-15
lines changed

9 files changed

+16
-15
lines changed

core/eolearn/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from .utilities import deep_eq, negate_mask, constant_pad, get_common_timestamps, bgr_to_rgb, FeatureParser
1919

2020

21-
__version__ = '0.8.0'
21+
__version__ = '0.8.1'

features/eolearn/features/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
from .doubly_logistic_approximation import DoublyLogisticApproximationTask
2121

2222

23-
__version__ = '0.8.0'
23+
__version__ = '0.8.1'

geometry/eolearn/geometry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from .superpixel import SuperpixelSegmentation, FelzenszwalbSegmentation, SlicSegmentation, MarkSegmentationBoundaries
88
from .transformations import VectorToRaster, RasterToVector
99

10-
__version__ = '0.8.0'
10+
__version__ = '0.8.1'

io/eolearn/io/__init__.py

Lines changed: 1 addition & 1 deletion
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.8.0'
12+
__version__ = '0.8.1'

io/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
eo-learn-core
2+
sentinelhub>=3.2.0
23
rasterio<=1.1.8

mask/eolearn/mask/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
from .utilities import resize_images
99
from .mask_counting import ClassFrequencyTask
1010

11-
__version__ = '0.8.0'
11+
__version__ = '0.8.1'

mask/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
eo-learn-core
2-
s2cloudless>=1.3.0
2+
s2cloudless>=1.5.0
33
opencv-contrib-python-headless
44
joblib
55
scikit-learn>=0.19.0,<0.24

ml_tools/eolearn/ml_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
MorphologicalFilterTask
1111
from .train_test_split import TrainTestSplitTask
1212

13-
__version__ = '0.8.0'
13+
__version__ = '0.8.1'

setup.py

Lines changed: 8 additions & 8 deletions
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.8.0',
25+
version='0.8.1',
2626
description='Earth observation processing framework for machine learning in Python',
2727
long_description=get_long_description(),
2828
long_description_content_type='text/markdown',
@@ -33,13 +33,13 @@ def parse_requirements(file):
3333
packages=[],
3434
include_package_data=True,
3535
install_requires=[
36-
'eo-learn-core>=0.8.0',
37-
'eo-learn-coregistration>=0.8.0',
38-
'eo-learn-features>=0.8.0',
39-
'eo-learn-geometry>=0.8.0',
40-
'eo-learn-io>=0.8.0',
41-
'eo-learn-mask>=0.8.0',
42-
'eo-learn-ml-tools>=0.8.0',
36+
'eo-learn-core>=0.8.1',
37+
'eo-learn-coregistration>=0.8.1',
38+
'eo-learn-features>=0.8.1',
39+
'eo-learn-geometry>=0.8.1',
40+
'eo-learn-io>=0.8.1',
41+
'eo-learn-mask>=0.8.1',
42+
'eo-learn-ml-tools>=0.8.1',
4343
'eo-learn-visualization>=0.8.0'
4444
],
4545
extras_require={

0 commit comments

Comments
 (0)