From 7866a4d3200ae517d42242a219afc0b50d0bd083 Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Thu, 23 Feb 2023 14:21:41 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.1.dev0=20=E2=86=92=200.7.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ctgan/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ctgan/__init__.py b/ctgan/__init__.py index 8882fd44..b49586b5 100644 --- a/ctgan/__init__.py +++ b/ctgan/__init__.py @@ -4,7 +4,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.7.1.dev0' +__version__ = '0.7.1' from ctgan.demo import load_demo from ctgan.synthesizers.ctgan import CTGAN diff --git a/setup.cfg b/setup.cfg index 70ba1902..4e3820a1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.1.dev0 +current_version = 0.7.1 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 d59fc15f..47aebdc2 100644 --- a/setup.py +++ b/setup.py @@ -117,6 +117,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/CTGAN', - version='0.7.1.dev0', + version='0.7.1', zip_safe=False, )