Skip to content

Commit edd9be5

Browse files
authored
Prepare next release (#490)
* Fix black * Bump version
1 parent 1e67739 commit edd9be5

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-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.18.0
3+
Version: 1.18.1
44
Summary: Python framework for short-term ensemble prediction systems
55
Home-page: http://pypi.python.org/pypi/pysteps/
66
License: LICENSE

pysteps/io/interface.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ def discover_importers():
4747
dictionary containing the available importers.
4848
"""
4949
# Backward compatibility with previous entry point 'pysteps.plugins.importers' next to 'pysteps.plugins.importer'
50-
for entry_point in list(
51-
entry_points(group="pysteps.plugins.importer")
52-
) + list(
50+
for entry_point in list(entry_points(group="pysteps.plugins.importer")) + list(
5351
entry_points(group="pysteps.plugins.importers")
5452
):
5553
_importer = entry_point.load()

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.18.0",
73+
version="1.18.1",
7474
author="PySteps developers",
7575
packages=find_packages(),
7676
license="LICENSE",

0 commit comments

Comments
 (0)