Skip to content

Commit

Permalink
Support SDMetrics-0.16.0 (#2236)
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo authored Sep 25, 2024
1 parent 2f9c842 commit 2ec3eaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies = [
'ctgan>=0.10.0',
'deepecho>=0.6.0',
'rdt>=1.12.3',
'sdmetrics>=0.14.0',
'sdmetrics>=0.16.0',
'platformdirs>=4.0',
'pyyaml>=6.0.1',
]
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/evaluation/test_multi_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
def test_evaluation():
"""Test ``evaluate_quality`` and ``run_diagnostic``."""
# Setup
table = pd.DataFrame({'id': [0, 1, 2, 3], 'col': [1, 2, 3, 4]})
table = pd.DataFrame({'id': [0, 1, 2, 3], 'col': [1, 2, 3, 4.0]})
slightly_different_table = pd.DataFrame({'id': [0, 1, 2, 3], 'col': [1, 2, 3, 3.5]})
data = {
'table1': table,
Expand Down

0 comments on commit 2ec3eaa

Please sign in to comment.