Skip to content

Commit

Permalink
[Setup] Pin PyYAML after cython 3 release (#2256)
Browse files Browse the repository at this point in the history
* pyyaml<5.3.1
  • Loading branch information
romilbhardwaj authored Jul 17, 2023
1 parent 677b2e8 commit 9814e4a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sky/setup_files/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,11 @@ def parse_readme(readme: str) -> str:
'pulp',
# Ray job has an issue with pydantic>2.0.0, due to API changes of pydantic. See
# https://github.com/ray-project/ray/issues/36990
'pydantic<2.0'
'pydantic<2.0',
# 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'
]

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

0 comments on commit 9814e4a

Please sign in to comment.