File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
Metadata-Version: 1.2
2
2
Name: pysteps
3
- Version: 1.18.0
3
+ Version: 1.18.1
4
4
Summary: Python framework for short-term ensemble prediction systems
5
5
Home-page: http://pypi.python.org/pypi/pysteps/
6
6
License: LICENSE
Original file line number Diff line number Diff line change @@ -47,9 +47,7 @@ def discover_importers():
47
47
dictionary containing the available importers.
48
48
"""
49
49
# 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 (
53
51
entry_points (group = "pysteps.plugins.importers" )
54
52
):
55
53
_importer = entry_point .load ()
Original file line number Diff line number Diff line change 70
70
71
71
setup (
72
72
name = "pysteps" ,
73
- version = "1.18.0 " ,
73
+ version = "1.18.1 " ,
74
74
author = "PySteps developers" ,
75
75
packages = find_packages (),
76
76
license = "LICENSE" ,
You can’t perform that action at this time.
0 commit comments