From ff796631760db8d2a3b1c8100fa90a681cbd63d0 Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Mon, 12 Feb 2024 10:34:55 +0100 Subject: [PATCH] Release --- mikeio/__init__.py | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mikeio/__init__.py b/mikeio/__init__.py index 9caafc3c4..4665a8f32 100644 --- a/mikeio/__init__.py +++ b/mikeio/__init__.py @@ -20,9 +20,9 @@ # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = "1.7.dev1" # TODO use git hash instead for dev version? +__version__ = "1.7.0" # TODO use git hash instead for dev version? # __version__ = "1.5.0" -__dfs_version__: int = 160 +__dfs_version__: int = 170 if "64" not in architecture()[0]: @@ -48,7 +48,7 @@ def read( filename: str | Path, *, - items: str | int | Sequence[str |int] | None = None, + items: str | int | Sequence[str | int] | None = None, time: int | str | slice | None = None, keepdims: bool = False, **kwargs, diff --git a/pyproject.toml b/pyproject.toml index 3579cb5c2..0e00daf75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ exclude = ["notebooks", "tests", "images"] [project] name="mikeio" -version="1.7.dev1" +version="1.7.0" dependencies = [ "mikecore>=0.2.1", "numpy>=1.22.0",