Skip to content

Commit aceb337

Browse files
committed
Update supported dependency versions
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
1 parent 55ea698 commit aceb337

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

econml/dowhy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class DoWhyWrapper:
3636

3737
def __init__(self, cate_estimator):
3838
from packaging.version import parse
39-
if parse(dowhy.__version__) >= parse('0.13'):
40-
warnings.warn("econml has not been tested with dowhy versions >= 0.13")
39+
if parse(dowhy.__version__) >= parse('0.15'):
40+
warnings.warn("econml has not been tested with dowhy versions >= 0.15")
4141
self._cate_estimator = cate_estimator
4242

4343
def _get_params(self):

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ classifiers = [
2121
dependencies = [
2222
"numpy",
2323
"scipy > 1.4.0",
24-
"scikit-learn >= 1.0, < 1.7",
24+
"scikit-learn >= 1.0, < 1.8",
2525
"sparse",
2626
"joblib >= 0.13.0",
2727
"statsmodels >= 0.10",
2828
"pandas > 1.0",
29-
"shap >= 0.38.1, < 0.49.0",
29+
"shap >= 0.38.1, < 0.51",
3030
"lightgbm",
3131
"packaging"
3232
]
@@ -49,7 +49,7 @@ plt = [
4949
]
5050
dowhy = [
5151
# when updating this, also update the version check in dowhy.py
52-
"dowhy < 0.13"
52+
"dowhy < 0.15"
5353
]
5454
ray = [
5555
"ray > 2.2.0"
@@ -60,7 +60,7 @@ all = [
6060
"azure-cli",
6161
"graphviz",
6262
"matplotlib",
63-
"dowhy < 0.13",
63+
"dowhy < 0.15",
6464
"ray > 2.2.0"
6565
]
6666

0 commit comments

Comments
 (0)