Skip to content

Commit

Permalink
Fix security vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarpenter2 committed Aug 15, 2019
1 parent 3b338df commit 0117957
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions docs/changelog.md
@@ -1,5 +1,8 @@
# Changelog

## Version 0.292
Fix known security vulnerability in parso <= 0.4.0 by requiring parso > 0.4.0

## Version 0.291
Change import from tqdm.auto instead of tqdm.autenook. Less warnings will show when importing swifter.

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -3,13 +3,13 @@
setup(
name="swifter",
packages=["swifter"], # this must be the same as the name above
version="0.291",
version="0.292",
description="A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner",
author="Jason Carpenter",
author_email="jcarpenter@manifold.ai",
url="https://github.com/jmcarpenter2/swifter", # use the URL to the github repo
download_url="https://github.com/jmcarpenter2/swifter/archive/0.291.tar.gz",
download_url="https://github.com/jmcarpenter2/swifter/archive/0.292.tar.gz",
keywords=["pandas", "dask", "apply", "function", "parallelize", "vectorize"],
install_requires=["pandas>=0.23.0", "psutil", "dask[complete]>=0.19.0", "tqdm>=4.27.0", "ipywidgets>=7.0.0", "numba"],
install_requires=["pandas>=0.23.0", "psutil", "dask[complete]>=0.19.0", "tqdm>=4.27.0", "ipywidgets>=7.0.0", "parso>0.4.0", "numba"],
classifiers=[],
)
2 changes: 1 addition & 1 deletion swifter/__init__.py
Expand Up @@ -3,4 +3,4 @@
from .swifter import SeriesAccessor, DataFrameAccessor

__all__ = ["SeriesAccessor, DataFrameAccessor"]
__version__ = "0.291"
__version__ = "0.292"

0 comments on commit 0117957

Please sign in to comment.