From 580654a5f66e23d8ace8174348514e2df3c65edd Mon Sep 17 00:00:00 2001 From: R-Palazzo Date: Tue, 18 Jul 2023 10:08:14 +0100 Subject: [PATCH] fix minimum version --- setup.py | 2 +- tasks.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e1ca69c13..78dae06fc 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ 'copulas>=0.9.0,<0.10', 'ctgan>=0.7.2,<0.8', 'deepecho>=0.4.1,<0.5', - 'rdt @ git+https://github.com/sdv-dev/RDT.git@master#egg=rdt', + 'rdt>=1.6.1.dev0', 'sdmetrics>=0.10.0,<0.11', 'cloudpickle>=2.1.0,<3.0', 'boto3>=1.15.0,<2', diff --git a/tasks.py b/tasks.py index bde50b3a5..16437a950 100644 --- a/tasks.py +++ b/tasks.py @@ -71,7 +71,7 @@ def install_minimum(c): if _validate_python_version(line): requirement = re.match(r'[^>]*', line).group(0) requirement = re.sub(r"""['",]""", '', requirement) - version = re.search(r'>=?(\d\.?)+', line).group(0) + version = re.search(r'>=?(\d\.?)+\w*', line).group(0) if version: version = re.sub(r'>=?', '==', version) version = re.sub(r"""['",]""", '', version)