Skip to content

Commit 9d4e169

Browse files
committed
Bump version
1 parent 5c6d08c commit 9d4e169

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.2
22
Name: pysteps
3-
Version: 1.9.0
3+
Version: 1.10.0
44
Summary: Python framework for short-term ensemble prediction systems
55
Home-page: http://pypi.python.org/pypi/pysteps/
66
License: LICENSE

pysteps/io/importers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1366,9 +1366,9 @@ def import_odim_hdf5(filename, qty="RATE", **kwargs):
13661366
mask = np.logical_and(~mask_u, ~mask_n)
13671367
quality = np.empty(arr.shape) # , dtype=float)
13681368
quality[mask] = arr[mask] * gain + offset
1369-
quality[
1370-
~mask
1371-
] = np.nan # a qui -----------------------------
1369+
quality[~mask] = (
1370+
np.nan
1371+
) # a qui -----------------------------
13721372

13731373
if precip is None:
13741374
raise IOError("requested quantity %s not found" % qty)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
setup(
7272
name="pysteps",
73-
version="1.9.0",
73+
version="1.10.0",
7474
author="PySteps developers",
7575
packages=find_packages(),
7676
license="LICENSE",

0 commit comments

Comments
 (0)