Skip to content

Commit

Permalink
Merge pull request #399 from sentinel-hub/feat/release-v1.0.1
Browse files Browse the repository at this point in the history
Release v1.0.1
  • Loading branch information
zigaLuksic committed Mar 29, 2022
2 parents eecabb0 + f9518b8 commit 67b99ca
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 17 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ celerybeat-schedule
venv/
ENV/

# pipenv
Pipfile*

# Spyder project settings
.spyderproject
.spyproject
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [Version 1.0.1] - 2022-03-29

- Fixed an issue where vector features with empty dataframes couldn't be saved to a Geopackage.
- Memory improvement in `EOPatch` merging procedure.
- Added support for `aws_session_token`, contributed by @theirix.
- Fixed an issue in `ImportFromTiffTask`.
- Fixed a packaging issue where some new subpackage extensions didn't work in the version `1.0.0` that was released to PyPI.
- `eo-learn` abstract package from now on requires fixed versions of `eo-learn` subpackages.
- Applied `isort` formatting on the entire package.
- Minor improvements in code and documentation.

## [Version 1.0.0] - 2022-02-09

### Core Changes
Expand Down
2 changes: 1 addition & 1 deletion core/eolearn/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
from .utils.fs import get_filesystem, load_s3_filesystem
from .utils.parsing import FeatureParser

__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion coregistration/eolearn/coregistration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
ThunderRegistrationTask,
)

__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion features/eolearn/features/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
AddSpatioTemporalFeaturesTask,
)

__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion geometry/eolearn/geometry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
)
from .transformations import RasterToVectorTask, VectorToRasterTask

__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion io/eolearn/io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
get_available_timestamps,
)

__version__ = "1.0.0"
__version__ = "1.0.1"
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 .snow_mask import SnowMaskTask, TheiaSnowMaskTask
from .utils import resize_images

__version__ = "1.0.0"
__version__ = "1.0.1"
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 @@ -5,4 +5,4 @@
from .sampling import BlockSamplingTask, FractionSamplingTask, GridSamplingTask, sample_by_values
from .train_test_split import TrainTestSplitTask

__version__ = "1.0.0"
__version__ = "1.0.1"
18 changes: 9 additions & 9 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.7",
version="1.0.0",
version="1.0.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,14 +33,14 @@ def parse_requirements(file):
packages=[],
include_package_data=True,
install_requires=[
"eo-learn-core>=1.0.0",
"eo-learn-coregistration>=1.0.0",
"eo-learn-features>=1.0.0",
"eo-learn-geometry>=1.0.0",
"eo-learn-io>=1.0.0",
"eo-learn-mask>=1.0.0",
"eo-learn-ml-tools>=1.0.0",
"eo-learn-visualization>=1.0.0",
"eo-learn-core==1.0.1",
"eo-learn-coregistration==1.0.1",
"eo-learn-features==1.0.1",
"eo-learn-geometry==1.0.1",
"eo-learn-io==1.0.1",
"eo-learn-mask==1.0.1",
"eo-learn-ml-tools==1.0.1",
"eo-learn-visualization==1.0.1",
],
extras_require={"DEV": parse_requirements("requirements-dev.txt")},
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion visualization/eolearn/visualization/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

from .eopatch import PlotBackend, PlotConfig

__version__ = "1.0.0"
__version__ = "1.0.1"

0 comments on commit 67b99ca

Please sign in to comment.