Skip to content

Commit 30659b7

Browse files
committed
Fix #56
1 parent eb6703d commit 30659b7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pandarallel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "1.4.1"
1+
__version__ = "1.4.2"
22

33
from .pandarallel import pandarallel

pandarallel/pandarallel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,7 @@ def closure(data, func, *args, **kwargs):
372372
)
373373

374374
map_result = pool.map_async(global_worker, workers_args)
375+
pool.close()
375376

376377
results = get_workers_result(
377378
use_memory_fs,

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
setup(
66
name="pandarallel",
7-
version="1.4.1",
7+
version="1.4.2",
88
python_requires=">=3.5",
99
packages=find_packages(),
1010
author="Manu NALEPA",
1111
author_email="nalepae@gmail.com",
1212
description="An easy to use library to speed up computation (by parallelizing on multi CPUs) with pandas.",
13-
long_description="See https://github.com/nalepae/pandarallel/tree/v1.4.1 for complete user guide.",
13+
long_description="See https://github.com/nalepae/pandarallel/tree/v1.4.2 for complete user guide.",
1414
url="https://github.com/nalepae/pandarallel",
1515
install_requires=install_requires,
1616
license="BSD",

0 commit comments

Comments
 (0)