Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions sky/setup_files/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,10 @@
'awscli>=1.27.10',
'botocore>=1.29.10',
'boto3>=1.26.1',
# NOTE: required by awscli. To avoid ray automatically installing
# the latest version.
'colorama < 0.4.5',
# NOTE: colorama is a dependency of awscli. We pin it to match the
# version constraint in awscli (<0.4.7) to prevent potential conflicts
# with other packages like ray, which might otherwise install a newer version.
'colorama<0.4.7',
]

# Kubernetes 32.0.0 has an authentication bug:
Expand Down
Loading