Skip to content

Commit

Permalink
Fix #56
Browse files Browse the repository at this point in the history
  • Loading branch information
nalepae committed Nov 28, 2019
1 parent eb6703d commit 30659b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pandarallel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "1.4.1"
__version__ = "1.4.2"

from .pandarallel import pandarallel
1 change: 1 addition & 0 deletions pandarallel/pandarallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ def closure(data, func, *args, **kwargs):
)

map_result = pool.map_async(global_worker, workers_args)
pool.close()

results = get_workers_result(
use_memory_fs,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

setup(
name="pandarallel",
version="1.4.1",
version="1.4.2",
python_requires=">=3.5",
packages=find_packages(),
author="Manu NALEPA",
author_email="[email protected]",
description="An easy to use library to speed up computation (by parallelizing on multi CPUs) with pandas.",
long_description="See https://github.com/nalepae/pandarallel/tree/v1.4.1 for complete user guide.",
long_description="See https://github.com/nalepae/pandarallel/tree/v1.4.2 for complete user guide.",
url="https://github.com/nalepae/pandarallel",
install_requires=install_requires,
license="BSD",
Expand Down

0 comments on commit 30659b7

Please sign in to comment.