- differentiate use of nP into nP and rP

- default to using one process per cpu core
- update requirements with versions
This commit is contained in:
Wim Pomp
2021-01-04 12:25:19 +01:00
parent b979a0c72a
commit 0721e2125c
2 changed files with 20 additions and 16 deletions

View File

@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="parfor",
version="2020.12.28",
version="2021.1.4",
author="Wim Pomp",
author_email="wimpomp@gmail.com",
description="A package to mimic the use of parfor as done in Matlab.",
@@ -20,5 +20,5 @@ setuptools.setup(
"Operating System :: OS Independent",
],
python_requires='>=2.7',
install_requires=['tqdm', 'dill'],
install_requires=['tqdm>=4.50.0', 'dill>=0.3.0'],
)