Skip to content

Commit

Permalink
Add py12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed Apr 3, 2024
1 parent a1624cd commit 93a82c4
Show file tree
Hide file tree
Showing 3 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 @@ -48,7 +48,7 @@ dependencies = [
rdt = { main = 'rdt.cli.__main__:main' }

[project.optional-dependencies]
copulas = ['copulas>=0.10.0,<0.11',]
copulas = ['copulas@git+ssh://[email protected]/sdv-dev/copulas@main#egg=copulas',]
test = [
'rdt[copulas]',

Expand Down
1 change: 0 additions & 1 deletion rdt/transformers/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import numpy as np
import pandas as pd
from scipy.stats import norm
from pandas.api.types import is_numeric_dtype

from rdt.errors import TransformerInputError
from rdt.transformers.base import BaseTransformer
Expand Down
1 change: 1 addition & 0 deletions tests/integration/transformers/test_categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,7 @@ def test_one_hot_categoricals():

# Run
transformed_data = transformer.fit_transform(test_data, column='A')

# Assert
pd.testing.assert_frame_equal(
transformed_data,
Expand Down

0 comments on commit 93a82c4

Please sign in to comment.