From 2b0df8819f4c33a0dbeb839dbae58606eecf483f Mon Sep 17 00:00:00 2001 From: rollevan Date: Fri, 18 Sep 2020 17:55:54 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.3.dev1=20=E2=86=92=200.3.?= =?UTF-8?q?3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- copulas/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/copulas/__init__.py b/copulas/__init__.py index 0eb44274..25fcf6ff 100644 --- a/copulas/__init__.py +++ b/copulas/__init__.py @@ -4,7 +4,7 @@ __author__ = 'MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com', -__version__ = '0.3.3.dev1' +__version__ = '0.3.3' import contextlib import importlib diff --git a/setup.cfg b/setup.cfg index 766d4cca..c3f7d144 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.3.dev1 +current_version = 0.3.3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 74bb7074..1c53654c 100644 --- a/setup.py +++ b/setup.py @@ -109,6 +109,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/Copulas', - version='0.3.3.dev1', + version='0.3.3', zip_safe=False, )