Skip to content

Commit

Permalink
Minor: require pyyaml > 3.13 to avoid an error. (#2283)
Browse files Browse the repository at this point in the history
  • Loading branch information
concretevitamin authored Jul 21, 2023
1 parent 371f7c4 commit 4abeb65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sky/setup_files/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ def parse_readme(readme: str) -> str:
# Cython 3.0 release breaks PyYAML installed by aws-cli.
# https://github.com/yaml/pyyaml/issues/601
# https://github.com/aws/aws-cli/issues/8036
'pyyaml<=5.3.1'
# <= 3.13 may encounter https://github.com/ultralytics/yolov5/issues/414
'pyyaml > 3.13, <= 5.3.1'
]

# NOTE: Change the templates/spot-controller.yaml.j2 file if any of the
Expand Down

0 comments on commit 4abeb65

Please sign in to comment.