Skip to content

Commit

Permalink
bump to version 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicBboy committed Jun 5, 2020
1 parent 180072e commit 37bf6a5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/schema_inference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ is a convenience method for this functionality.
:skipif: SKIP

schema_type: dataframe
version: 0.4.0
version: 0.4.1
columns:
column1:
pandas_dtype: int64
Expand Down
2 changes: 1 addition & 1 deletion pandera/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
Timedelta = PandasDtype.Timedelta


__version__ = "0.4.0"
__version__ = "0.4.1"
2 changes: 1 addition & 1 deletion pandera/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __init__(
keys to subsets of the column/dataframe.
:param ignore_na: If True, drops null values on the checked series or
dataframe before passing into the ``check_fn``. For dataframes,
drops rows with any null value.
drops rows with any null value. *New in version 0.4.0*
:param element_wise: Whether or not to apply validator in an
element-wise fashion. If bool, assumes that all checks should be
applied to the column element-wise. If list, should be the same
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
from setuptools import setup

from pandera import __version__

with open('README.md') as f:
long_description = f.read()


setup(
name="pandera",
version="0.4.0",
version=__version__,
author="Niels Bantilan",
author_email="niels.bantilan@gmail.com",
description="A light-weight and flexible validation package for pandas "
Expand Down

0 comments on commit 37bf6a5

Please sign in to comment.