Skip to content

Commit

Permalink
Beta 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ecomodeller committed Mar 27, 2024
1 parent b87b01b commit 15bcb5d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mikeio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#

__version__ = "2.0.dev0" # TODO use git hash instead for dev version?
__version__ = "2.0.b0" # TODO use git hash instead for dev version?
# __version__ = "1.5.0"
__dfs_version__: int = 200

Expand Down
2 changes: 0 additions & 2 deletions mikeio/dataset/_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,8 +573,6 @@ def remove(self, key: int | str) -> None:
--------
pop
"""
# deprecated
warnings.warn("Dataset.remove is deprecated", FutureWarning)
self.__delitem__(key)

def rename(self, mapper: Mapping[str, str], inplace: bool = False) -> "Dataset":
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ allow-direct-references = true

[project]
name="mikeio"
version="2.0.dev0"
version="2.0.b0"
dependencies = [
"mikecore>=0.2.1",
"numpy>=1.22.0",
Expand Down

0 comments on commit 15bcb5d

Please sign in to comment.