From 3ae8aabef745894026d96a207af9fba75a692949 Mon Sep 17 00:00:00 2001 From: cosmicBboy Date: Tue, 10 Sep 2019 22:18:40 -0400 Subject: [PATCH] bump to v0.2.1: bugfix on sphinx docs --- 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 6b2b83892..a2f93a12e 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,9 +1,9 @@ package: name: pandera - version: "0.2.0" + version: "0.2.1" source: - git_rev: 0.2.0 + git_rev: 0.2.1 git_url: https://github.com/pandera-dev/pandera.git build: diff --git a/pandera/__init__.py b/pandera/__init__.py index 32d72ba96..fee3c3f0d 100644 --- a/pandera/__init__.py +++ b/pandera/__init__.py @@ -17,4 +17,4 @@ from .schema_components import Column, Index, MultiIndex -__version__ = "0.2.0" +__version__ = "0.2.1" diff --git a/setup.py b/setup.py index e824634a0..abc1aa035 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="pandera", - version="0.2.0", + version="0.2.1", author="Niels Bantilan", author_email="niels.bantilan@gmail.com", description="A light-weight and flexible validation package for pandas "