mirror of https://github.com/microsoft/autogen.git
Fix catboost failure in mac-os python<3.9 (#1020)
This commit is contained in:
parent
6d7fb3d786
commit
39b9a9a417
6
setup.py
6
setup.py
|
@ -55,7 +55,7 @@ setuptools.setup(
|
||||||
"pre-commit",
|
"pre-commit",
|
||||||
"torch",
|
"torch",
|
||||||
"torchvision",
|
"torchvision",
|
||||||
"catboost>=0.26",
|
"catboost>=0.26,<1.2",
|
||||||
"rgf-python",
|
"rgf-python",
|
||||||
"optuna==2.8.0",
|
"optuna==2.8.0",
|
||||||
"openml==0.10.2",
|
"openml==0.10.2",
|
||||||
|
@ -77,7 +77,7 @@ setuptools.setup(
|
||||||
"ipykernel",
|
"ipykernel",
|
||||||
"pytorch-lightning<1.9.1", # test_forecast_panel
|
"pytorch-lightning<1.9.1", # test_forecast_panel
|
||||||
],
|
],
|
||||||
"catboost": ["catboost>=0.26"],
|
"catboost": ["catboost>=0.26,<1.2"],
|
||||||
"blendsearch": ["optuna==2.8.0"],
|
"blendsearch": ["optuna==2.8.0"],
|
||||||
"ray": [
|
"ray": [
|
||||||
"ray[tune]~=1.13",
|
"ray[tune]~=1.13",
|
||||||
|
@ -118,7 +118,7 @@ setuptools.setup(
|
||||||
"hcrystalball==0.1.10",
|
"hcrystalball==0.1.10",
|
||||||
"pytorch-forecasting>=0.9.0",
|
"pytorch-forecasting>=0.9.0",
|
||||||
],
|
],
|
||||||
"benchmark": ["catboost>=0.26", "psutil==5.8.0", "xgboost==1.3.3"],
|
"benchmark": ["catboost>=0.26,<1.2", "psutil==5.8.0", "xgboost==1.3.3"],
|
||||||
"openai": ["openai==0.27.4", "diskcache"],
|
"openai": ["openai==0.27.4", "diskcache"],
|
||||||
"autogen": ["openai==0.27.4", "diskcache", "docker"],
|
"autogen": ["openai==0.27.4", "diskcache", "docker"],
|
||||||
"synapse": ["joblibspark>=0.5.0", "optuna==2.8.0", "pyspark>=3.2.0"],
|
"synapse": ["joblibspark>=0.5.0", "optuna==2.8.0", "pyspark>=3.2.0"],
|
||||||
|
|
Loading…
Reference in New Issue