From c679e46bb753531496f289642e85a6b64fc39d51 Mon Sep 17 00:00:00 2001 From: cosmicBboy Date: Sat, 9 Nov 2019 18:50:46 -0500 Subject: [PATCH] bump to v0.2.4: testing for category and datetime dtypes --- conda.recipe/meta.yaml | 4 ++-- pandera/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 3aa9536ce..068ee56e2 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,9 +1,9 @@ package: name: pandera - version: "0.2.3" + version: "0.2.4" source: - git_rev: 0.2.3 + git_rev: 0.2.4 git_url: https://github.com/pandera-dev/pandera.git build: diff --git a/pandera/__init__.py b/pandera/__init__.py index cd41e3bd0..a0fb8640f 100644 --- a/pandera/__init__.py +++ b/pandera/__init__.py @@ -17,4 +17,4 @@ from .schema_components import Column, Index, MultiIndex -__version__ = "0.2.3" +__version__ = "0.2.4" diff --git a/setup.py b/setup.py index eb05e4b9c..ceec87a6b 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="pandera", - version="0.2.3", + version="0.2.4", author="Niels Bantilan", author_email="niels.bantilan@gmail.com", description="A light-weight and flexible validation package for pandas "