Skip to content

Commit

Permalink
985 prepare 0270 release (#994)
Browse files Browse the repository at this point in the history
* updated comment

* Bump version: 0.26.1 → 0.27.0
  • Loading branch information
veenstrajelmer committed Sep 9, 2024
1 parent 8aff8ba commit 5d0731b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.26.1
current_version = 0.27.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ authors:
orcid: https://orcid.org/0000-0002-6349-818X
title: "dfm_tools: A Python package for pre- and postprocessing D-FlowFM model input and output files"
type: software
version: 0.26.1
version: 0.27.0
doi: https://doi.org/10.5281/zenodo.7857393
2 changes: 1 addition & 1 deletion dfm_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Jelmer Veenstra"""
__email__ = "jelmer.veenstra@deltares.nl"
__version__ = "0.26.1"
__version__ = "0.27.0"

from dfm_tools.deprecated import *
from dfm_tools.download import *
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dfm_tools"
version = "0.26.1"
version = "0.27.0"
maintainers = [{ name = "Jelmer Veenstra", email = "jelmer.veenstra@deltares.nl" }]
description = "dfm_tools are pre- and post-processing tools for Delft3D FM"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def test_download_era5(file_nc_era5_pattern):
# datasets retrieved with new cds-beta have valid_time instead of time dimn/varn
# https://forum.ecmwf.int/t/new-time-format-in-era5-netcdf-files/3796/5?u=jelmer_veenstra
# TODO: can be removed after https://github.com/Unidata/netcdf4-python/issues/1357 or https://forum.ecmwf.int/t/3796 is fixed
if 'valid_time' in ds.dims: #TODO: can be removed if
if 'valid_time' in ds.dims:
timedim = 'valid_time'

assert ds.sizes[timedim] == 1416
Expand Down

0 comments on commit 5d0731b

Please sign in to comment.