Skip to content

Commit b80db6e

Browse files
committed
Meteostat 1.5.7
1 parent f444c24 commit b80db6e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

meteostat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"""
1313

1414
__appname__ = 'meteostat'
15-
__version__ = '1.5.6'
15+
__version__ = '1.5.7'
1616

1717
from .interface.base import Base
1818
from .interface.timeseries import Timeseries

meteostat/core/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def processing_handler(
4646
elif threads > 1 and len(datasets) > 1:
4747

4848
# Create process pool
49-
with ThreadPool(cores) as pool:
49+
with ThreadPool(threads) as pool:
5050

5151
# Process datasets in pool
5252
output = pool.starmap(load, datasets)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Setup
1616
setup(
1717
name='meteostat',
18-
version='1.5.6',
18+
version='1.5.7',
1919
author='Meteostat',
2020
author_email='[email protected]',
2121
description='Access and analyze historical weather and climate data with Python.',

0 commit comments

Comments
 (0)