Skip to content

Commit

Permalink
Add ipywidgets in setup.py (Fix #44)
Browse files Browse the repository at this point in the history
  • Loading branch information
nalepae committed Nov 2, 2019
1 parent f654c3e commit 5d00af7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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.3.3"
__version__ = "1.3.4"

from .pandarallel import pandarallel
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from setuptools import setup, find_packages

install_requires = ["pandas", "pyarrow >= 0.12.1", "pathos >= 0.2.4"]
install_requires = ["pandas", "pyarrow >= 0.12.1", "pathos >= 0.2.4", "ipywidgets"]

setup(
name="pandarallel",
version="1.3.3",
version="1.3.4",
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.3.3 for complete user guide.",
long_description="See https://github.com/nalepae/pandarallel/tree/v1.3.4 for complete user guide.",
url="https://github.com/nalepae/pandarallel",
install_requires=install_requires,
license="BSD",
Expand Down

0 comments on commit 5d00af7

Please sign in to comment.