From baab3da31d46614ad30c13e616fc61bef43b7373 Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Wed, 10 Apr 2024 17:49:59 -0500 Subject: [PATCH] Bumping versions (#362) --- ctgan/__init__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ctgan/__init__.py b/ctgan/__init__.py index f4c323b4..62eabf75 100644 --- a/ctgan/__init__.py +++ b/ctgan/__init__.py @@ -4,7 +4,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.9.2.dev0' +__version__ = '0.10.0.dev0' from ctgan.demo import load_demo from ctgan.synthesizers.ctgan import CTGAN diff --git a/pyproject.toml b/pyproject.toml index b8175bf8..6712ed5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dependencies = [ "torch>=2.0.0;python_version>='3.11' and python_version<'3.12'", "torch>=2.2.0;python_version>='3.12'", 'tqdm>=4.29,<5', - 'rdt @ git+https://github.com/sdv-dev/RDT@main', + 'rdt>=1.11.0.dev0', ] [project.urls] @@ -151,7 +151,7 @@ add-ignore = ['D107', 'D407', 'D417'] collect_ignore = ['pyproject.toml'] [tool.bumpversion] -current_version = "0.9.2.dev0" +current_version = "0.10.0.dev0" parse = '(?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))?' serialize = [ '{major}.{minor}.{patch}.{release}{candidate}',