Skip to content

Commit

Permalink
Merge pull request #82 from uclamii/reqs_editing
Browse files Browse the repository at this point in the history
XGBoost requirements update
  • Loading branch information
lshpaner authored Nov 12, 2024
2 parents 7e04902 + e89f85c commit d20e655
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ requires-python = ">=3.7"
dependencies = [
"joblib==1.3.2",
"tqdm==4.66.4",
"xgboost==1.6.2",
"catboost==1.2.7",

"pip==24.0; python_version == '3.7'",
Expand All @@ -24,6 +23,7 @@ dependencies = [
"scipy==1.4.1; python_version == '3.7'",
"imbalanced-learn==0.7.0; python_version == '3.7'",
"scikit-optimize==0.8.1; python_version == '3.7'",
"xgboost==1.6.2; python_version == '3.7'",

"pip==24.2; python_version >= '3.8' and python_version < '3.11'",
"setuptools==75.1.0; python_version >= '3.8' and python_version < '3.11'",
Expand All @@ -34,6 +34,7 @@ dependencies = [
"scipy>=1.6.3, <1.11; python_version >= '3.8' and python_version < '3.11'",
"scikit-optimize==0.10.2; python_version >= '3.8' and python_version < '3.11'",
"imbalanced-learn==0.12.4; python_version >= '3.8' and python_version < '3.11'",
"xgboost==2.1.2; python_version >= '3.8' and python_version < '3.11'",

"pip==24.2; python_version >= '3.11'",
"setuptools==75.1.0; python_version >= '3.11'",
Expand All @@ -43,7 +44,8 @@ dependencies = [
"scikit-learn==1.5.1; python_version >= '3.11'",
"scipy==1.14.0; python_version >= '3.11'",
"imbalanced-learn==0.12.4; python_version >= '3.11'",
"scikit-optimize==0.10.2; python_version >= '3.11'"
"scikit-optimize==0.10.2; python_version >= '3.11'",
"xgboost==2.1.2; python_version >= '3.11'",
]


Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# -e .

# catboost==1.2.7
# xgboost==1.6.2
# xgboost==2.1.2
###############################################################################
############################ Python 3.11 and above #############################
################################################################################
Expand All @@ -60,7 +60,7 @@ tqdm==4.66.4
-e .

catboost==1.2.7
xgboost==1.6.2
xgboost==2.1.2
scikit-optimize==0.10.2
pytest==8.3.3
pytest-cov==5.0.0

0 comments on commit d20e655

Please sign in to comment.