Skip to content

Commit

Permalink
[show-gpus] Change pandas groupby function to str instead of callable (
Browse files Browse the repository at this point in the history
…#2583)

pandas call update

(cherry picked from commit ec78242)
  • Loading branch information
romilbhardwaj committed Sep 19, 2023
1 parent 7a777e8 commit c324612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/clouds/service_catalog/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def make_list_from_df(rows):
'InstanceType', 'AcceleratorName', 'AcceleratorCount', 'vCPUs',
'MemoryGiB'
],
dropna=False).aggregate(min).reset_index()
dropna=False).aggregate('min').reset_index()
ret = rows.apply(
lambda row: InstanceTypeInfo(
cloud,
Expand Down

0 comments on commit c324612

Please sign in to comment.