Skip to content

Commit

Permalink
Fix numpy iterable import in _causal_analysis.py for numpy>2.0 (#945)
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Matiach <[email protected]>
  • Loading branch information
imatiach-msft authored Jan 27, 2025
1 parent 459a9ff commit e5102c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion econml/solutions/causal_analysis/_causal_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import joblib
import lightgbm as lgb
import numpy as np
from numpy.lib.function_base import iterable
from numpy import iterable
import pandas as pd
from sklearn.base import BaseEstimator, TransformerMixin
from sklearn.compose import ColumnTransformer
Expand Down

0 comments on commit e5102c1

Please sign in to comment.