Skip to content

Commit 3bea55d

Browse files
committed
fix(flagtune): move PyYAML to optional dependencies
1 parent 20abb73 commit 3bea55d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,6 @@ def get_flagtree_version():
984984
long_description_content_type="text/markdown",
985985
install_requires=[
986986
"importlib-metadata; python_version < '3.10'",
987-
*(["PyYAML>=6.0"] if helper.flagtree_backend != "thrive" else []),
988987
],
989988
packages=list(get_packages()),
990989
package_dir=dict(get_package_dirs()),
@@ -1019,6 +1018,7 @@ def get_flagtree_version():
10191018
],
10201019
"flagtune": [
10211020
"numpy>=1.26.4,<2.0",
1021+
"PyYAML>=6.0",
10221022
"scikit-learn>=1.4,<2.0",
10231023
"xgboost==3.3.0",
10241024
],

0 commit comments

Comments
 (0)