Skip to content

Commit 6797eb9

Browse files
committed
Fixate max requirements
1 parent 6872f16 commit 6797eb9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
hyperopt==0.2.7
2-
numpy>=2.0.0
2+
numpy>=2.0.0,<=2.3.0
33
scikit-learn>=1.5,<=1.7
4-
scipy>=1.15.0
5-
pandas>=2.1.0
4+
scipy>=1.15.0,<=1.15.3
5+
pandas>=2.1.0,<=2.3.0
66
setuptools>=71.0.0

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tox>=4.20.0
2-
xgboost>=2.0.0
2+
xgboost>=2.0.0,<=2.2.0
33
lightgbm==4.6.0
44
coverage==7.6.12
55
-r requirements.txt

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ classifiers =
3535
packages = find:
3636
install_requires =
3737
hyperopt==0.2.7
38-
numpy>=2.0.0
38+
numpy>=2.0.0,<=2.3.0
3939
scikit-learn>=1.5,<=1.7
40-
scipy>=1.15.0
41-
pandas>=2.1.0
40+
scipy>=1.15.0,<=1.15.3
41+
pandas>=2.1.0,<=2.3.0
4242
setuptools>=71.0.0
4343
python_requires = >=3.11
4444
zip_safe = False
4545

4646
[options.extras_require]
47-
xgboost = xgboost>=2.0.0
47+
xgboost = xgboost>=2.0.0,<=2.2.0
4848
lightgbm = lightgbm==4.6.0
4949
testing =
5050
tox>=4.20.0

0 commit comments

Comments
 (0)