Skip to content

Commit

Permalink
[train] Bump XGBoost/LightGBM versions (ray-project#38828)
Browse files Browse the repository at this point in the history
* [train] Bump XGBoost/LightGBM versions

Signed-off-by: Kai Fricke <[email protected]>
  • Loading branch information
krfricke authored Aug 24, 2023
1 parent a9e4ce9 commit 2daa4e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/ray/train/_internal/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def fsid(self):
return "_excluding_local"

def _should_exclude(self, name: str) -> bool:
"""Return True if `name` matches any of the `self._exclude` patterns."""
"""Return True if `name` matches any of the ``self._exclude`` patterns."""
alt = None
if os.path.isdir(name):
# If this is a directory, also test it with trailing slash
Expand Down
2 changes: 1 addition & 1 deletion python/requirements/compat/requirements_py37_compat.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pytorch-lightning==1.6.5

# Upstream libraries
lightgbm_ray==0.1.8
xgboost_ray==0.1.15
xgboost_ray==0.1.17

# Datasets
pyarrow==6.0.1
Expand Down
4 changes: 2 additions & 2 deletions python/requirements/ml/core-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ wandb==0.13.4
# ML training frameworks
xgboost==1.6.2; python_version <= '3.7'
xgboost==1.7.6; python_version > '3.7'
xgboost_ray==0.1.15
xgboost_ray==0.1.18

lightgbm==3.3.5
lightgbm_ray==0.1.8
lightgbm_ray==0.1.9

# Huggingface
transformers==4.19.1
Expand Down

0 comments on commit 2daa4e5

Please sign in to comment.