Skip to content

Commit

Permalink
Add support for lightgbm 4.3 (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw authored Jan 26, 2024
1 parent 18d6812 commit 9085b9a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 17 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- { PYTHON_VERSION: '3.8', SKLEARN_VERSION: '', LGBM_VERSION: 'lightgbm=4.0' }
- { PYTHON_VERSION: '3.8', SKLEARN_VERSION: '', LGBM_VERSION: 'lightgbm=4.1' }
- { PYTHON_VERSION: '3.8', SKLEARN_VERSION: '', LGBM_VERSION: 'lightgbm=4.2' }
- { PYTHON_VERSION: '3.8', SKLEARN_VERSION: '', LGBM_VERSION: 'lightgbm=4.3' }
- { PYTHON_VERSION: '3.8', SKLEARN_VERSION: '', LGBM_VERSION: '' }
- { PYTHON_VERSION: '3.9', SKLEARN_VERSION: '', LGBM_VERSION: '' }
- { PYTHON_VERSION: '3.10', SKLEARN_VERSION: '', LGBM_VERSION: '' }
Expand Down
13 changes: 0 additions & 13 deletions CHANGELOG.rst

This file was deleted.

2 changes: 1 addition & 1 deletion environment-deprecated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- conda-forge
- nodefaults
dependencies:
- lightgbm >=3.2,<4.3
- lightgbm >=3.2,<4.4
- numpy
- python >=3.8
- pre-commit
Expand Down
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lint = "pre-commit run -a"
[dependencies]
python = ">=3.8"
pip = "*"
lightgbm = ">=3.2,<4.3"
lightgbm = ">=3.2,<4.4"
numpy = "*"
pre-commit = "*"
pandas = "*"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "hatchling.build"
[project]
name = "slim-trees"
description = "A python package for efficient pickling of ML models."
version = "0.2.6"
version = "0.2.7"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
Expand All @@ -26,7 +26,7 @@ dependencies = [

[project.optional-dependencies]
lightgbm = [
"lightgbm >=3.2,<4.3",
"lightgbm >=3.2,<4.4",
]
scikit-learn = [
"scikit-learn >=1.1.0,<1.4",
Expand Down

0 comments on commit 9085b9a

Please sign in to comment.