Skip to content

Commit

Permalink
fix minimum version
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Jul 18, 2023
1 parent 68e7f25 commit 580654a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 580654a

Please sign in to comment.