diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0193530e..c13f3add 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/asottile/pyupgrade - rev: v3.2.0 + rev: v3.3.1 hooks: - id: pyupgrade args: @@ -10,19 +10,19 @@ repos: - --py39-plus - repo: https://github.com/python-poetry/poetry - rev: 1.2.2 + rev: 1.3.0 hooks: - id: poetry-check - repo: https://github.com/pycqa/isort - rev: 5.10.1 + rev: 5.11.4 hooks: - id: isort name: isort (python) args: ["--profile", "black"] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.4.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -30,6 +30,6 @@ repos: - id: check-added-large-files - repo: https://github.com/psf/black - rev: 22.10.0 + rev: 22.12.0 hooks: - id: black diff --git a/openeo_processes_dask/__init__.py b/openeo_processes_dask/__init__.py index b464c952..d96d67d6 100644 --- a/openeo_processes_dask/__init__.py +++ b/openeo_processes_dask/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2022.12.4" +__version__ = "2023.1.0" import rioxarray as rio # Required for the .rio accessor on xarrays. diff --git a/pyproject.toml b/pyproject.toml index aac6466d..2fc53a6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openeo-processes-dask" -version = "2022.12.4" +version = "2023.1.0" description = "Python implementations of many OpenEO processes, dask-friendly by default." authors = ["Lukas Weidenholzer ", "Sean Hoyal ", "Valentina Hutter "] license = "Apache 2.0"