skypilot-nightly 1.0.0.dev20250428__py3-none-any.whl → 1.0.0.dev20250429__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. sky/__init__.py +2 -2
  2. sky/adaptors/nebius.py +28 -40
  3. sky/cli.py +90 -37
  4. sky/client/cli.py +90 -37
  5. sky/client/sdk.py +3 -2
  6. sky/clouds/cloud.py +5 -2
  7. sky/clouds/kubernetes.py +4 -4
  8. sky/clouds/nebius.py +16 -10
  9. sky/clouds/service_catalog/constants.py +1 -1
  10. sky/clouds/service_catalog/kubernetes_catalog.py +7 -7
  11. sky/core.py +58 -29
  12. sky/dashboard/out/404.html +1 -1
  13. sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
  14. sky/dashboard/out/clusters/[cluster].html +1 -1
  15. sky/dashboard/out/clusters.html +1 -1
  16. sky/dashboard/out/favicon.ico +0 -0
  17. sky/dashboard/out/index.html +1 -1
  18. sky/dashboard/out/jobs/[job].html +1 -1
  19. sky/dashboard/out/jobs.html +1 -1
  20. sky/optimizer.py +35 -11
  21. sky/provision/docker_utils.py +22 -16
  22. sky/provision/kubernetes/utils.py +26 -24
  23. sky/server/common.py +6 -3
  24. sky/server/config.py +184 -0
  25. sky/server/requests/executor.py +17 -156
  26. sky/server/server.py +4 -4
  27. sky/setup_files/dependencies.py +0 -1
  28. sky/skypilot_config.py +27 -6
  29. sky/templates/kubernetes-ray.yml.j2 +23 -13
  30. sky/templates/nebius-ray.yml.j2 +63 -0
  31. {skypilot_nightly-1.0.0.dev20250428.dist-info → skypilot_nightly-1.0.0.dev20250429.dist-info}/METADATA +2 -2
  32. {skypilot_nightly-1.0.0.dev20250428.dist-info → skypilot_nightly-1.0.0.dev20250429.dist-info}/RECORD +38 -37
  33. /sky/dashboard/out/_next/static/{2f-jlOWR_G5mOwCF4RcZz → BMtJJ079_cyYmtW2-7nVS}/_buildManifest.js +0 -0
  34. /sky/dashboard/out/_next/static/{2f-jlOWR_G5mOwCF4RcZz → BMtJJ079_cyYmtW2-7nVS}/_ssgManifest.js +0 -0
  35. {skypilot_nightly-1.0.0.dev20250428.dist-info → skypilot_nightly-1.0.0.dev20250429.dist-info}/WHEEL +0 -0
  36. {skypilot_nightly-1.0.0.dev20250428.dist-info → skypilot_nightly-1.0.0.dev20250429.dist-info}/entry_points.txt +0 -0
  37. {skypilot_nightly-1.0.0.dev20250428.dist-info → skypilot_nightly-1.0.0.dev20250429.dist-info}/licenses/LICENSE +0 -0
  38. {skypilot_nightly-1.0.0.dev20250428.dist-info → skypilot_nightly-1.0.0.dev20250429.dist-info}/top_level.txt +0 -0
sky/server/server.py CHANGED
@@ -35,6 +35,7 @@ from sky.jobs.server import server as jobs_rest
35
35
  from sky.provision.kubernetes import utils as kubernetes_utils
36
36
  from sky.serve.server import server as serve_rest
37
37
  from sky.server import common
38
+ from sky.server import config as server_config
38
39
  from sky.server import constants as server_constants
39
40
  from sky.server import stream_utils
40
41
  from sky.server.requests import executor
@@ -1166,13 +1167,12 @@ if __name__ == '__main__':
1166
1167
  # that it is shown only when the API server is started.
1167
1168
  usage_lib.maybe_show_privacy_policy()
1168
1169
 
1169
- num_workers = 1
1170
- if cmd_args.deploy:
1171
- num_workers = common_utils.get_cpu_count()
1170
+ config = server_config.compute_server_config(cmd_args.deploy)
1171
+ num_workers = config.num_server_workers
1172
1172
 
1173
1173
  sub_procs = []
1174
1174
  try:
1175
- sub_procs = executor.start(deploy=cmd_args.deploy)
1175
+ sub_procs = executor.start(config)
1176
1176
  logger.info(f'Starting SkyPilot API server, workers={num_workers}')
1177
1177
  # We don't support reload for now, since it may cause leakage of request
1178
1178
  # workers or interrupt running requests.
@@ -53,7 +53,6 @@ install_requires = [
53
53
  'aiofiles',
54
54
  'httpx',
55
55
  'setproctitle',
56
- 'omegaconf>=2.4.0dev3,<2.5',
57
56
  ]
58
57
 
59
58
  local_ray = [
sky/skypilot_config.py CHANGED
@@ -56,8 +56,6 @@ import threading
56
56
  import typing
57
57
  from typing import Any, Dict, Iterator, List, Optional, Tuple
58
58
 
59
- from omegaconf import OmegaConf
60
-
61
59
  from sky import exceptions
62
60
  from sky import sky_logging
63
61
  from sky.adaptors import common as adaptors_common
@@ -321,6 +319,31 @@ def _parse_config_file(config_path: str) -> config_utils.Config:
321
319
  return config
322
320
 
323
321
 
322
+ def _parse_dotlist(dotlist: List[str]) -> config_utils.Config:
323
+ """Parse a comma-separated list of key-value pairs into a dictionary.
324
+
325
+ Args:
326
+ dotlist: A comma-separated list of key-value pairs.
327
+
328
+ Returns:
329
+ A config_utils.Config object with the parsed key-value pairs.
330
+ """
331
+ config: config_utils.Config = config_utils.Config()
332
+ for arg in dotlist:
333
+ try:
334
+ key, value = arg.split('=', 1)
335
+ except ValueError as e:
336
+ raise ValueError(f'Invalid config override: {arg}. '
337
+ 'Please use the format: key=value') from e
338
+ if len(key) == 0 or len(value) == 0:
339
+ raise ValueError(f'Invalid config override: {arg}. '
340
+ 'Please use the format: key=value')
341
+ value = yaml.safe_load(value)
342
+ nested_keys = tuple(key.split('.'))
343
+ config.set_nested(nested_keys, value)
344
+ return config
345
+
346
+
324
347
  def _reload_config_from_internal_file(internal_config_path: str) -> None:
325
348
  global _dict, _loaded_config_path
326
349
  # Reset the global variables, to avoid using stale values.
@@ -483,11 +506,9 @@ def _compose_cli_config(cli_config: Optional[List[str]]) -> config_utils.Config:
483
506
  'Cannot use multiple --config flags with a config file.')
484
507
  config_source = maybe_config_path
485
508
  # cli_config is a path to a config file
486
- parsed_config = OmegaConf.to_object(
487
- OmegaConf.load(maybe_config_path))
509
+ parsed_config = _parse_config_file(maybe_config_path)
488
510
  else: # cli_config is a comma-separated list of key-value pairs
489
- parsed_config = OmegaConf.to_object(
490
- OmegaConf.from_dotlist(cli_config))
511
+ parsed_config = _parse_dotlist(cli_config)
491
512
  _validate_config(parsed_config, config_source)
492
513
  except ValueError as e:
493
514
  raise ValueError(f'Invalid config override: {cli_config}. '
@@ -258,7 +258,7 @@ available_node_types:
258
258
  # service is required.
259
259
  labels:
260
260
  parent: skypilot
261
- # component will be set for the head node pod to be the same as the head node service selector above if a
261
+ # component will be set for the head node pod to be the same as the head node service selector above if a
262
262
  skypilot-cluster: {{cluster_name_on_cloud}}
263
263
  # Identifies the SSH jump pod used by this pod. Used in life cycle management of the ssh jump pod.
264
264
  skypilot-ssh-jump: {{k8s_ssh_jump_name}}
@@ -277,11 +277,8 @@ available_node_types:
277
277
  restartPolicy: {{ "Always" if high_availability else "Never" }}
278
278
 
279
279
  # Add node selector if GPU/TPUs are requested:
280
- {% if (k8s_acc_label_key is not none and k8s_acc_label_value is not none) or (k8s_spot_label_key is not none) %}
280
+ {% if (k8s_topology_label_key is not none and k8s_topology_label_value is not none) or (k8s_spot_label_key is not none) %}
281
281
  nodeSelector:
282
- {% if k8s_acc_label_key is not none and k8s_acc_label_value is not none %}
283
- {{k8s_acc_label_key}}: {{k8s_acc_label_value}}
284
- {% endif %}
285
282
  {% if k8s_topology_label_key is not none and k8s_topology_label_value is not none %}
286
283
  {{k8s_topology_label_key}}: {{k8s_topology_label_value}}
287
284
  {% endif %}
@@ -289,6 +286,19 @@ available_node_types:
289
286
  {{k8s_spot_label_key}}: {{k8s_spot_label_value|tojson}}
290
287
  {% endif %}
291
288
  {% endif %}
289
+ {% if (k8s_acc_label_key is not none and k8s_acc_label_values is not none) %}
290
+ affinity:
291
+ nodeAffinity:
292
+ requiredDuringSchedulingIgnoredDuringExecution:
293
+ nodeSelectorTerms:
294
+ - matchExpressions:
295
+ - key: {{k8s_acc_label_key}}
296
+ operator: In
297
+ values:
298
+ {% for label_value in k8s_acc_label_values %}
299
+ - {{label_value}}
300
+ {% endfor %}
301
+ {% endif %}
292
302
 
293
303
  {% if k8s_spot_label_key is not none %}
294
304
  tolerations:
@@ -339,15 +349,15 @@ available_node_types:
339
349
  # Do not change this command - it keeps the pod alive until it is
340
350
  # explicitly killed.
341
351
  command: ["/bin/bash", "-c", "--"]
342
- args:
352
+ args:
343
353
  - |
344
354
  # For backwards compatibility, we put a marker file in the pod
345
- # to indicate that the pod is running with the changes introduced
355
+ # to indicate that the pod is running with the changes introduced
346
356
  # in project nimbus: https://github.com/skypilot-org/skypilot/pull/4393
347
357
  # TODO: Remove this marker file and it's usage in setup_commands
348
358
  # after v0.10.0 release.
349
359
  touch /tmp/skypilot_is_nimbus
350
-
360
+
351
361
  # Helper function to conditionally use sudo
352
362
  # TODO(zhwu): consolidate the two prefix_cmd and sudo replacements
353
363
  prefix_cmd() { if [ $(id -u) -ne 0 ]; then echo "sudo"; else echo ""; fi; }
@@ -390,7 +400,7 @@ available_node_types:
390
400
  fi;
391
401
  # SSH and other packages are not necessary, so we disable set -e
392
402
  set +e
393
-
403
+
394
404
  if [ ! -z "$MISSING_PACKAGES" ]; then
395
405
  # Install missing packages individually to avoid failure installation breaks the whole install process,
396
406
  # e.g. fuse3 is not available on some distributions.
@@ -443,7 +453,7 @@ available_node_types:
443
453
  $(prefix_cmd) rm -f /bin/fusermount-wrapper
444
454
  $(prefix_cmd) cp -p {{k8s_fusermount_shared_dir}}/fusermount-wrapper /bin/fusermount-wrapper
445
455
  fi
446
- {% endif %}
456
+ {% endif %}
447
457
 
448
458
  $(prefix_cmd) mkdir -p /var/run/sshd;
449
459
  $(prefix_cmd) sed -i "s/PermitRootLogin prohibit-password/PermitRootLogin yes/" /etc/ssh/sshd_config;
@@ -574,7 +584,7 @@ available_node_types:
574
584
  # File is already being monitored
575
585
  continue
576
586
  fi
577
-
587
+
578
588
  # Monitor the new file
579
589
  monitor_file $file &
580
590
  already_monitored="${already_monitored} ${file}"
@@ -756,7 +766,7 @@ setup_commands:
756
766
  echo "=== Logs for asynchronous ray and skypilot installation ===";
757
767
  if [ -f /tmp/skypilot_is_nimbus ]; then
758
768
  echo "=== Logs for asynchronous ray and skypilot installation ===";
759
- [ -f /tmp/ray_skypilot_installation_complete ] && cat /tmp/${STEPS[1]}.log ||
769
+ [ -f /tmp/ray_skypilot_installation_complete ] && cat /tmp/${STEPS[1]}.log ||
760
770
  { tail -f -n +1 /tmp/${STEPS[1]}.log & TAIL_PID=$!; echo "Tail PID: $TAIL_PID"; until [ -f /tmp/ray_skypilot_installation_complete ]; do sleep 0.5; done; kill $TAIL_PID || true; };
761
771
  [ -f /tmp/${STEPS[1]}.failed ] && { echo "Error: ${STEPS[1]} failed. Exiting."; exit 1; } || true;
762
772
  fi
@@ -786,7 +796,7 @@ setup_commands:
786
796
  # properly written.
787
797
  # TODO(Doyoung): Investigate to see why TPU workload fails to run without
788
798
  # execution permission, such as granting 766 to log file. Check if it's a
789
- # must and see if there's a workaround to grant minimum permission.
799
+ # must and see if there's a workaround to grant minimum permission.
790
800
  sudo chmod 777 /tmp/tpu_logs;
791
801
  {% endif %}
792
802
 
@@ -10,6 +10,27 @@ provider:
10
10
  module: sky.provision.nebius
11
11
  region: "{{region}}"
12
12
 
13
+ {%- if docker_image is not none %}
14
+ docker:
15
+ image: {{docker_image}}
16
+ container_name: {{docker_container_name}}
17
+ run_options:
18
+ - --ulimit nofile=1048576:1048576
19
+ {%- for run_option in docker_run_options %}
20
+ - {{run_option}}
21
+ {%- endfor %}
22
+ {%- if docker_login_config is not none %}
23
+ docker_login_config:
24
+ username: |-
25
+ {{docker_login_config.username}}
26
+ password: |-
27
+ {{docker_login_config.password}}
28
+ server: |-
29
+ {{docker_login_config.server}}
30
+ {%- endif %}
31
+ {%- endif %}
32
+
33
+
13
34
  auth:
14
35
  ssh_user: ubuntu
15
36
  ssh_private_key: {{ssh_private_key}}
@@ -22,6 +43,48 @@ available_node_types:
22
43
  ImageId: {{image_id}}
23
44
  DiskSize: {{disk_size}}
24
45
  UserData: |
46
+ {%- if docker_image is not none %}
47
+ runcmd:
48
+ - sudo sed -i 's/^#\?AllowTcpForwarding.*/AllowTcpForwarding yes/' /etc/ssh/sshd_config
49
+ - systemctl restart sshd
50
+ {%- endif %}
51
+
52
+ {# Two available OS images:
53
+ 1. ubuntu22.04-driverless - requires Docker installation
54
+ 2. ubuntu22.04-cuda12 - comes with Docker pre-installed
55
+ To optimize deployment speed, Docker is only installed when using ubuntu22.04-driverless #}
56
+ {%- if docker_image is not none and image_id == 'ubuntu22.04-driverless' %}
57
+ apt:
58
+ sources:
59
+ docker.list:
60
+ source: deb [arch=amd64] https://download.docker.com/linux/ubuntu $RELEASE stable
61
+ keyid: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
62
+
63
+ packages:
64
+ - apt-transport-https
65
+ - ca-certificates
66
+ - curl
67
+ - gnupg-agent
68
+ - software-properties-common
69
+ - docker-ce
70
+ - docker-ce-cli
71
+ - containerd.io
72
+
73
+ # Enable ipv4 forwarding, required on CIS hardened machines
74
+ write_files:
75
+ - path: /etc/sysctl.d/enabled_ipv4_forwarding.conf
76
+ content: |
77
+ net.ipv4.conf.all.forwarding=1
78
+
79
+ # create the docker group
80
+ groups:
81
+ - docker
82
+
83
+ # Add default auto created user to docker group
84
+ system_info:
85
+ default_user:
86
+ groups: [docker]
87
+ {%- endif %}
25
88
  users:
26
89
  - name: skypilot:ssh_user
27
90
  shell: /bin/bash
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: skypilot-nightly
3
- Version: 1.0.0.dev20250428
3
+ Version: 1.0.0.dev20250429
4
4
  Summary: SkyPilot: An intercloud broker for the clouds
5
5
  Author: SkyPilot Team
6
6
  License: Apache 2.0
@@ -47,7 +47,6 @@ Requires-Dist: python-multipart
47
47
  Requires-Dist: aiofiles
48
48
  Requires-Dist: httpx
49
49
  Requires-Dist: setproctitle
50
- Requires-Dist: omegaconf<2.5,>=2.4.0dev3
51
50
  Provides-Extra: aws
52
51
  Requires-Dist: urllib3<2; extra == "aws"
53
52
  Requires-Dist: awscli>=1.27.10; extra == "aws"
@@ -204,6 +203,7 @@ Dynamic: summary
204
203
 
205
204
  ----
206
205
  :fire: *News* :fire:
206
+ - [Apr 2025] Spin up **Qwen3** on your cluster/cloud: [**example**](./llm/qwen/)
207
207
  - [Mar 2025] Run and serve **Google Gemma 3** using SkyPilot [**example**](./llm/gemma3/)
208
208
  - [Feb 2025] Prepare and serve **Retrieval Augmented Generation (RAG) with DeepSeek-R1**: [**blog post**](https://blog.skypilot.co/deepseek-rag), [**example**](./llm/rag/)
209
209
  - [Feb 2025] Run and serve **DeepSeek-R1 671B** using SkyPilot and SGLang with high throughput: [**example**](./llm/deepseek-r1/)
@@ -1,19 +1,19 @@
1
- sky/__init__.py,sha256=By1vsxUFvlG9qYPFRhaVu4PlF6Hg-zj60o9k015xgO8,6428
1
+ sky/__init__.py,sha256=IfX3_WM36ex8P93YgN6XwZvRf5JW-Y1TBwW2pC30cv0,6428
2
2
  sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
3
3
  sky/authentication.py,sha256=ND011K_-Ud1dVZF37A9KrwYir_ihJXcHc7iDWmuBc8Q,22872
4
4
  sky/check.py,sha256=PPNQnaaZBA9_aogJpN4gnG4XWnTqkd74c-rBYDkDRDY,16101
5
- sky/cli.py,sha256=NNXfmIh4ytnRcwRCuwBH9rVFyvbsBGBl7zLntbgewDY,229325
5
+ sky/cli.py,sha256=ZSjxxHWxy9Vow7LXVts7a_NrCCDYRA_NypKsZXRdcP0,231896
6
6
  sky/cloud_stores.py,sha256=Ln5GBpel-sEs7rVx7bBrMkfLwA_bctI05Rox2uoz7Lo,26388
7
- sky/core.py,sha256=2D1AhdZ1hyD6bBdLyF0t8UJS4ObkgYMwEteWC9_6ysc,47900
7
+ sky/core.py,sha256=vIVBnsK3KUh2rH0bya6VnGihm1_GWC1440AbYPHbwLA,49157
8
8
  sky/dag.py,sha256=8x-VMtjvSi0lYBemCMPLYq5ONljhoABjWzMKjmmdjSo,3369
9
9
  sky/exceptions.py,sha256=7nw0Pv2e8LV0OpW2tn5wQsN65eqJhV_ptov-0YaMdiU,17256
10
10
  sky/execution.py,sha256=b3mdvP1K7hx-JIWaqbBcs5FVo4ZLGwd7XJ3J1Vi7ZnE,29529
11
11
  sky/global_user_state.py,sha256=ZG72TlGWIqBSFF-MroWf9-pqycAZAvBrKE4Paf0KUGs,33832
12
12
  sky/models.py,sha256=bGMSATMkSMr_Kp6SCoiJVVeebwSdZuzjw_jrJzVWAAc,1603
13
- sky/optimizer.py,sha256=6bg3CB74pMvk30yQCE7zFSSudWmz78Cdd-IRbjGHBzA,58425
13
+ sky/optimizer.py,sha256=VzfNH-Idp9Kcsu4HOiTrY4IDRoowTUc8orCSvDAsFqg,59672
14
14
  sky/resources.py,sha256=T9kSL03149rIJs1LbfDwkZSIEpFL5uhceZTr2Nep78o,74719
15
15
  sky/sky_logging.py,sha256=Nmc29vvg-GgKRZcajNrGlkuCIFxrVqefdXTPiS7Y-9o,5914
16
- sky/skypilot_config.py,sha256=e1F6oShfQoEazEKZV-yqsBpQOHlLSW8fl0t3utOh8Ts,20379
16
+ sky/skypilot_config.py,sha256=Ri7fbXDk1CWY1vSVulqbFx1dYzXJTY6KFx7li26UNaQ,21194
17
17
  sky/task.py,sha256=S_UmRG6jMw9-6nR_s8Cxf12J1mAdH_dmcZS9wOPn4m8,57021
18
18
  sky/adaptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  sky/adaptors/aws.py,sha256=4caUTO5nxZQyDVPyQdoPljaF-Lz_Fa6NEnu3FfmLZd4,8633
@@ -26,7 +26,7 @@ sky/adaptors/docker.py,sha256=_kzpZ0fkWHqqQAVVl0llTsCE31KYz3Sjn8psTBQHVkA,468
26
26
  sky/adaptors/gcp.py,sha256=oEb9jClEtApw6PQnxdxDYxOCYsedvM3aiko1EW1FDVo,3501
27
27
  sky/adaptors/ibm.py,sha256=7YbHrWbYcZsJDgxMBNZr1yBI03mjs_C3pnCTCz-MNtQ,5068
28
28
  sky/adaptors/kubernetes.py,sha256=FIPzhhiwpnpRqMlDHO2XGhBlHce_ZktRdg7xTYRTmmM,7473
29
- sky/adaptors/nebius.py,sha256=PMDuqJ3SWLUUqtUgYLpCHOBJ-xucqptGforknSZr-54,6546
29
+ sky/adaptors/nebius.py,sha256=vaWh8MK6mfGB_mcTrBd0sWO6DhMDep0xFm-w2PTDcH4,6286
30
30
  sky/adaptors/oci.py,sha256=xJt6J9xBSFIENa6FwEt1V1sZE8puAZ_vPEoGlyQACPs,2839
31
31
  sky/adaptors/runpod.py,sha256=4Nt_BfZhJAKQNA3wO8cxvvNI8x4NsDGHu_4EhRDlGYQ,225
32
32
  sky/adaptors/vast.py,sha256=tpvmHi7IkQNzbbHVkeo04kUSajoEpSzXr2XgeO_I1LU,695
@@ -43,21 +43,21 @@ sky/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  sky/benchmark/benchmark_state.py,sha256=X8CXmuU9KgsDRhKedhFgjeRMUFWtQsjFs1qECvPG2yg,8723
44
44
  sky/benchmark/benchmark_utils.py,sha256=7rf-iHt6RXZ_pnBBWOMwcdodHQW69x27xNyx0yVog1U,26385
45
45
  sky/client/__init__.py,sha256=pz6xvVSd9X-gwqbsDL0E9QOojYqM0KAD0j-NCyCIF1k,38
46
- sky/client/cli.py,sha256=NNXfmIh4ytnRcwRCuwBH9rVFyvbsBGBl7zLntbgewDY,229325
46
+ sky/client/cli.py,sha256=ZSjxxHWxy9Vow7LXVts7a_NrCCDYRA_NypKsZXRdcP0,231896
47
47
  sky/client/common.py,sha256=E_5cjxd8fWRB7fU1yfIbiyQf-IyVhpD5KkB7Fl3cQEI,15215
48
- sky/client/sdk.py,sha256=r_HyEuCUQvPwRWTnXJ7OUy6kzoSUxccJno7ToJ2mCMM,71315
48
+ sky/client/sdk.py,sha256=i2YJpJMGs3nptN-yRzgPvQ3pWoRqTfm2RHP8-ImskaE,71381
49
49
  sky/clouds/__init__.py,sha256=OW6mJ-9hpJSBORCgt2LippLQEYZHNfnBW1mooRNNvxo,1416
50
50
  sky/clouds/aws.py,sha256=ACsY6xe0ul-1a9Kx-BehOg6LDz-fdYSQFqMARR-KTEE,54828
51
51
  sky/clouds/azure.py,sha256=PnVhmk_Zqh4Cg5myQWk-r8uGkhBibPVANQddPVnvVQE,32429
52
- sky/clouds/cloud.py,sha256=L7HEJMs291opdbPHwa0hykj-BfRgZ238Sd5PNggbrhA,36900
52
+ sky/clouds/cloud.py,sha256=1EfHyYTJxaSo7Q4Hw_SF-Lj8L11P8v6Q1sepHTJKP30,37120
53
53
  sky/clouds/cudo.py,sha256=fqmZl0FUzxv17QKS_KFWgH_GXGxjkt8U66d5_4Uxrf4,13374
54
54
  sky/clouds/do.py,sha256=n7Mler69EHV1A3038IybSssMapm7LPmpdupsc1pOg7A,11754
55
55
  sky/clouds/fluidstack.py,sha256=5WZcuOP8RzkG35I8t_q60dWR_5m9s2bGVyOnSvDGAHc,12834
56
56
  sky/clouds/gcp.py,sha256=y4VUDW8rsnqOsEfx4-c2ru2VNCAziwSDut8ZUaEfK3U,58191
57
57
  sky/clouds/ibm.py,sha256=BDWY3VmQ_Wqg7WG58lnJ-94iI4g9rCKQkdee-Yf8CJ0,22168
58
- sky/clouds/kubernetes.py,sha256=xBH6KH_lpcgXDpR33w9UooGdlGd6RGrs4MJk8M2yBjY,37934
58
+ sky/clouds/kubernetes.py,sha256=yFmiKTvWfv0uP2RLBDBXyfUgG2SUgVBee0woPTs4GtM,37939
59
59
  sky/clouds/lambda_cloud.py,sha256=vfq4cjbHfONioOKlkx7Ct-2t3t14qg6aU4A8JEPWzoQ,12942
60
- sky/clouds/nebius.py,sha256=NPJcefHRIPZbV9mL59mB2P2kuZfncbSBEXl9w1vcxDA,15236
60
+ sky/clouds/nebius.py,sha256=qBEOOqMwi5sLeTPQV0CR0DdnWOa2MXp6_OlSGQhVesE,15426
61
61
  sky/clouds/oci.py,sha256=QvDNjRDmraDVUfXUgHuqpIc0sJ4Bw0Xg-754Tq3P_RU,27842
62
62
  sky/clouds/paperspace.py,sha256=nbLe2kujPI0t8H61wVEbHR6z_PNl9g0J42f55YbLux0,11222
63
63
  sky/clouds/runpod.py,sha256=mwGBbaVJvo9CMny-fLFizDImoEkBv8cS1TZYE3-UnwY,12617
@@ -69,13 +69,13 @@ sky/clouds/service_catalog/aws_catalog.py,sha256=PbYD37rU_8m-Y_5xTglW21ppxI0GecM
69
69
  sky/clouds/service_catalog/azure_catalog.py,sha256=5Q51x_WEKvQ2YSgJvZHRH3URlbwIstYuwpjaWW_wJlw,8149
70
70
  sky/clouds/service_catalog/common.py,sha256=6TCUE1kg2FvUZXpV2ktrnsRchUYNTGx8rq16m5Nztek,27766
71
71
  sky/clouds/service_catalog/config.py,sha256=ylzqewdEBjDg4awvFek6ldYmFrnvD2bVGLZuLPvEVYA,1793
72
- sky/clouds/service_catalog/constants.py,sha256=zxl8uEszOZbXYDWGYvzxeAot2i0i2_yOwWeNzapCsYw,435
72
+ sky/clouds/service_catalog/constants.py,sha256=N-Qgy93rtWC4lMNO7eeYYgXH9LXn-Y3lcWb8lR3vMwk,435
73
73
  sky/clouds/service_catalog/cudo_catalog.py,sha256=V_takvL6dWTGQaTLCEvjKIotCDPnMujiNUZ87kZKGVI,4673
74
74
  sky/clouds/service_catalog/do_catalog.py,sha256=Cug2QaQlSN6nFhba7f1ksyzs6z0ICTj6vSiR-792WnI,3698
75
75
  sky/clouds/service_catalog/fluidstack_catalog.py,sha256=21-cvrYEYTIi7n3ZNF2e7_0QX-PF4BkhlVJUWQOvKrY,5059
76
76
  sky/clouds/service_catalog/gcp_catalog.py,sha256=vmuXr4A3ONCBJtFaJ3AcoFUCg6L1C503o3gwWixvSXg,25267
77
77
  sky/clouds/service_catalog/ibm_catalog.py,sha256=1iK0KvbI82U7sySb7chr-qm_16x3tTnZ6nIo7o76ouc,4493
78
- sky/clouds/service_catalog/kubernetes_catalog.py,sha256=XjlHxmuatwj_l8DT_JAEWhogSW6SURpgyTxAG0-BRFQ,13636
78
+ sky/clouds/service_catalog/kubernetes_catalog.py,sha256=vm7UDpOiG2EFWlxHz6td7-dXL_OtajpvuP5PoD9nkUk,13733
79
79
  sky/clouds/service_catalog/lambda_catalog.py,sha256=2R-ccu63BbdvO6X80MtxiniA-jLewXb6I0Ye1rYD9fY,5302
80
80
  sky/clouds/service_catalog/nebius_catalog.py,sha256=SEPyR9kCvirp6astnEUOfEMru48uyX_EIC6nbL1YBUA,4507
81
81
  sky/clouds/service_catalog/oci_catalog.py,sha256=cyA6ZqwHGOKuPxUl_dKmFGdeWdQGMrvl_-o2MtyF998,8580
@@ -101,14 +101,14 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
101
101
  sky/clouds/utils/gcp_utils.py,sha256=YtuS4EoAMvcRnGPgE_WLENPOPWIdvhp7dLceTw_zfas,7114
102
102
  sky/clouds/utils/oci_utils.py,sha256=0YxhgZdeIHQUI1AZ86YuswsZg5HdVCIVfSTRJsSHYI0,6396
103
103
  sky/clouds/utils/scp_utils.py,sha256=MqawUhhFHHxVnn29nOI4gJ_nF665ich4Po7bsy1afsA,15948
104
- sky/dashboard/out/404.html,sha256=qwsrC_OxNuJHYBxcMO_wk27ul4IXB5GqN2JWk2xKRBA,2296
105
- sky/dashboard/out/clusters.html,sha256=6GS4czDOrM7RzmVYvBNv9nbi_FfhyG2AN2pFE0YvCxE,11739
106
- sky/dashboard/out/favicon.ico,sha256=TOQ3bobTJzBo24JY6SBgVR3uoYxKd9XMtP9IL_bWS1k,42245
107
- sky/dashboard/out/index.html,sha256=07xoc3TQeAcE3J3FkazXPbl9fFdOcAmCb4l8BPvaqEg,1407
108
- sky/dashboard/out/jobs.html,sha256=b4dcUuDBHxexypJtJKep1gSymYyey0ZaCTzpexmDhA0,12829
104
+ sky/dashboard/out/404.html,sha256=WEdRiERhmcJpID6QcaD8mkEeEZ8immo9ZrR2H82oqZ0,2296
105
+ sky/dashboard/out/clusters.html,sha256=J7g1IXwlKxhfPB8xxLNwCTy0wHCj7w5Z96pgC097Y5U,11739
106
+ sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
107
+ sky/dashboard/out/index.html,sha256=At3la02O11vlBvEUplqOXwGXZTIH0lYUkuD8ZuSankg,1407
108
+ sky/dashboard/out/jobs.html,sha256=I3by33pIzIJ0SdrC_nUR4Wlm-RMb-Eslj29NKjdjJvo,12829
109
109
  sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
110
- sky/dashboard/out/_next/static/2f-jlOWR_G5mOwCF4RcZz/_buildManifest.js,sha256=7uuHw3t0SwdYow3LY25GpA5209nWYOYSjxRWmQ5if60,1048
111
- sky/dashboard/out/_next/static/2f-jlOWR_G5mOwCF4RcZz/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
110
+ sky/dashboard/out/_next/static/BMtJJ079_cyYmtW2-7nVS/_buildManifest.js,sha256=7uuHw3t0SwdYow3LY25GpA5209nWYOYSjxRWmQ5if60,1048
111
+ sky/dashboard/out/_next/static/BMtJJ079_cyYmtW2-7nVS/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
112
112
  sky/dashboard/out/_next/static/chunks/236-2db3ee3fba33dd9e.js,sha256=c6zARNqhT9VG1xQb_IXT_tuCvfGsglNIWWn93eCDkZo,24840
113
113
  sky/dashboard/out/_next/static/chunks/312-c3c8845990db8ffc.js,sha256=H8yGnoxM_IYM2kU-A7mESi4aV4Ph3PxbIdnM2v5Kd3M,25150
114
114
  sky/dashboard/out/_next/static/chunks/37-0a572fe0dbb89c4d.js,sha256=1w7y8HAPvOZ-KtEzw8mdTqqZvxUEMPJ8U-capQ-SH0c,8107
@@ -130,9 +130,9 @@ sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]-f383db7389368ea7.
130
130
  sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-6ac338bc2239cb45.js,sha256=ciMtxEIartNtC_Y66ZBfZj0todScMGOZ4XchdgesEwo,8913
131
131
  sky/dashboard/out/_next/static/chunks/pages/jobs/[job]-1c519e1afc523dc9.js,sha256=oMjs5t_YqMrm-nDMPyazBuKyCKocY-Hp1pgWQ4_ncDc,13420
132
132
  sky/dashboard/out/_next/static/css/c6933bbb2ce7f4dd.css,sha256=V9pn7LZ7uXLy3EQjFl-5MydGktBkn2yM4SWccJF9Sm0,31944
133
- sky/dashboard/out/clusters/[cluster].html,sha256=guJTLPW7bvVIIEKu3Q7aTwJXlmKFQHmsEEhg42qtKO4,1984
134
- sky/dashboard/out/clusters/[cluster]/[job].html,sha256=Q27Q7FCDjNlJIlRP2Iq2HrxE3vibfWvfWVsQWUZGKkQ,1653
135
- sky/dashboard/out/jobs/[job].html,sha256=UbFONrHHRTL-EOrrZ4-7970nS7s8VfA2A6V9UD20j8E,1621
133
+ sky/dashboard/out/clusters/[cluster].html,sha256=OGn7CKk1XqAlDLrd61tFU9VB-gebeM_RC-T2gTUxPYI,1984
134
+ sky/dashboard/out/clusters/[cluster]/[job].html,sha256=u2qyZliAanBRlH3Bupfv_Z9xQJL79crEGa5sHsJZ2Fk,1653
135
+ sky/dashboard/out/jobs/[job].html,sha256=-ci4r_VcdTM0GI__yFmY9MX399pIJ9sPw7r79JmlkXk,1621
136
136
  sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
137
137
  sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
138
138
  sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
@@ -159,7 +159,7 @@ sky/jobs/server/server.py,sha256=LqBWzYVMMJ6rRcGeDsqCQco6pG_CcDCAHzmVbt57IQM,861
159
159
  sky/provision/__init__.py,sha256=LzOo5LjkRXwSf29dUqN14YbjzQu3liXLQcmweTeZ4dE,6457
160
160
  sky/provision/common.py,sha256=mTsL1UU-kPYGAc1gWUo-btI8bdL6tAWg9OMMAb-v8ws,10197
161
161
  sky/provision/constants.py,sha256=oc_XDUkcoLQ_lwDy5yMeMSWviKS0j0s1c0pjlvpNeWY,800
162
- sky/provision/docker_utils.py,sha256=ENm0LkyrYWic3Ikyacho8X5uDMvGsbkZQsb6kNH1DuI,19629
162
+ sky/provision/docker_utils.py,sha256=FbuusMa7MkmEeZ4DGuZEEituPTb64f8LmqlwJPgyPvY,19855
163
163
  sky/provision/instance_setup.py,sha256=mI-V89Fa0MzLP74YJ8Ns-dgR-Y_CkAxLdrUudTdmKGk,24435
164
164
  sky/provision/logging.py,sha256=_sx_TH6nLt0FF3myS5pEZbiMhXyl4s1XwMidu_TTBUw,2091
165
165
  sky/provision/metadata_utils.py,sha256=LrxeV4wD2QPzNdXV_npj8q-pr35FatxBBjF_jSbpOT0,4013
@@ -199,7 +199,7 @@ sky/provision/kubernetes/constants.py,sha256=dZCUV8FOO9Gct80sdqeubKnxeW3CGl-u5mx
199
199
  sky/provision/kubernetes/instance.py,sha256=Oxaypl8BwR9UxWmyl_6SEcBFAcSv6moT3mFaJGi0WOc,58464
200
200
  sky/provision/kubernetes/network.py,sha256=PEy7lZvmoysmormB49JW245tRcy4owAXzDGV5KHVPEI,12672
201
201
  sky/provision/kubernetes/network_utils.py,sha256=6uck1aBkgtm-gGBitU3_hEUp8j14ZuG_4Xo70ReZYXs,11654
202
- sky/provision/kubernetes/utils.py,sha256=I_pisnOaPqvHfMX-S1d_bHsMEWVJcTw4W5KvuZUs42A,129287
202
+ sky/provision/kubernetes/utils.py,sha256=xVyYcSNO9j_TiCjwZccCJHnZlT0MtUKoX6L1y0huv8o,129415
203
203
  sky/provision/kubernetes/manifests/fusermount-server-daemonset.yaml,sha256=S87GNAbDqgTrLuxF-afPAqQ0V-i41El4s_9KBZMuaag,1331
204
204
  sky/provision/lambda_cloud/__init__.py,sha256=6EEvSgtUeEiup9ivIFevHmgv0GqleroO2X0K7TRa2nE,612
205
205
  sky/provision/lambda_cloud/config.py,sha256=jq1iLzp4Up61r4JGxvtpVbJlgXnea3LHYQhCQyyl7ik,272
@@ -262,15 +262,16 @@ sky/serve/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
262
262
  sky/serve/server/core.py,sha256=6l_XddW5ZWfdRdzyfQdB8rtBcU90VN_yXRM85tz0hsc,41499
263
263
  sky/serve/server/server.py,sha256=A9K37a0nQgZeN3eKWv62Oh2C5TSAReTZ9pHmztqlI-c,4396
264
264
  sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
265
- sky/server/common.py,sha256=zoix59ERQNh-sYRXGJ8_y1zCy9oZs9e1FQT9VP6x2p0,28137
265
+ sky/server/common.py,sha256=Ey8EQpT96TsBUN9EeIVw0dVvr23kdgZJESaIoe4xL6Y,28260
266
+ sky/server/config.py,sha256=XWf5Kw4am6vMO5wcyWevbQAFH-dmKb7AMEgDzD083-M,8538
266
267
  sky/server/constants.py,sha256=Ha3A4X0kPh0FrdlM5u34Wi7OxhScPUwHqRi4-ye347Y,1112
267
- sky/server/server.py,sha256=j2SHlmfkZv4hHHQUB_iXSAJN7tNjJgRIQDRTWWkH_hk,46935
268
+ sky/server/server.py,sha256=WU1xMlwrbAOZ5DR09yBwgvYd4PdF7dvTXAsN9-9Y9Eo,46981
268
269
  sky/server/stream_utils.py,sha256=4JMHgtoXPpCT8JwtqyUcDQ9IdZFir9om0JaCRr8rvbQ,5849
269
270
  sky/server/uvicorn.py,sha256=wajwPHJ3IEEP3GMNOCc0S81-1v2qT5F-ejUkLFVhUzk,2953
270
271
  sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
271
272
  sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
273
  sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
273
- sky/server/requests/executor.py,sha256=hJndJp1RGpqvfeSuYL-EleJw_ruPLESktpU6f30JKfk,26787
274
+ sky/server/requests/executor.py,sha256=BUD9JZP_K8Ldvak0tRODvyBRUx3L_FuMHNHu832ZZjE,19793
274
275
  sky/server/requests/payloads.py,sha256=7Ect-lsw4fem0BOMxFbyt1nUCucLPf52Kfblo-BlHUs,16934
275
276
  sky/server/requests/preconditions.py,sha256=ipxIb_3JXG6S3-ymcOdqQNb7VDvoPqADxu9ZK7-nQWc,7179
276
277
  sky/server/requests/process.py,sha256=uv6JmqdT1vR6S5j3a0CEmxz3fUoKQoZCryQsjZpZE7E,8734
@@ -282,7 +283,7 @@ sky/server/requests/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
282
283
  sky/server/requests/serializers/decoders.py,sha256=F7eqENzt7hH92BPYUGnSJ_-XGobA0whPezTh5EDLCQs,6729
283
284
  sky/server/requests/serializers/encoders.py,sha256=4bQV5yTg8RTPT_HkRyQpjaBY_uUvBJ4NH189W0-6Pi0,5578
284
285
  sky/setup_files/MANIFEST.in,sha256=xhxaTVBu63MiTRV52AIlHp6qrg0i301PDIvH0lRw4E0,619
285
- sky/setup_files/dependencies.py,sha256=ZNn608y0Yb2oTz9prWDxgPEeH9QEmfJ3CzlIcE021QQ,6489
286
+ sky/setup_files/dependencies.py,sha256=adacO1H3Y0LUJgcCOlTVnbaDSUBgXLV42Qr4OW0amb0,6456
286
287
  sky/setup_files/setup.py,sha256=dGDMbDZQM3-9vLFgYWsxyGmHQLr2QfNLRU8lIQevlnQ,7508
287
288
  sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
288
289
  sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -324,11 +325,11 @@ sky/templates/jobs-controller.yaml.j2,sha256=LbeWGkarOcrRbbdvkZv_ZfyydEcJBohKItC
324
325
  sky/templates/kubernetes-ingress.yml.j2,sha256=73iDklVDWBMbItg0IexCa6_ClXPJOxw7PWz3leku4nE,1340
325
326
  sky/templates/kubernetes-loadbalancer.yml.j2,sha256=IxrNYM366N01bbkJEbZ_UPYxUP8wyVEbRNFHRsBuLsw,626
326
327
  sky/templates/kubernetes-port-forward-proxy-command.sh,sha256=iw7mypHszg6Ggq9MbyiYMFOkSlXaQZulaxqC5IWYGCc,3381
327
- sky/templates/kubernetes-ray.yml.j2,sha256=VxzEbz-RpgjJiJxYfGqVzEf_43oY1mN_OMSkIkmT2ZQ,38621
328
+ sky/templates/kubernetes-ray.yml.j2,sha256=q3YEdzZYebixtreJcqpOzDbHmPCFYKXfkdBB7xKHJdA,38902
328
329
  sky/templates/kubernetes-ssh-jump.yml.j2,sha256=k5W5sOIMppU7dDkJMwPlqsUcb92y7L5_TVG3hkgMy8M,2747
329
330
  sky/templates/lambda-ray.yml.j2,sha256=IWUFROlaVV9qsH4tYInn0xgyE1WAP_dHZBnGkNpmpYM,4713
330
331
  sky/templates/local-ray.yml.j2,sha256=FNHeyHF6nW9nU9QLIZceUWfvrFTTcO51KqhTnYCEFaA,1185
331
- sky/templates/nebius-ray.yml.j2,sha256=Hjyzjb47ryGWuoUCLluz7JktZfJ3RdB644X3DpXHJL8,3678
332
+ sky/templates/nebius-ray.yml.j2,sha256=rMNsRpurqVAH4bzz2PZVI44s5GyarlGix1gyv-3-mK0,5662
332
333
  sky/templates/oci-ray.yml.j2,sha256=pm1_sLC9r-mMj4NHGH1ogKqxG2-M6bu2NPWb6Z58zsU,4777
333
334
  sky/templates/paperspace-ray.yml.j2,sha256=oNjsBtDqGlLLWR7d0rsE-WNKNkbPK7LKiMMTkY1b6UI,4236
334
335
  sky/templates/runpod-ray.yml.j2,sha256=nrjxH_WtORM72hfZ2sU_8PLF_UtxgGaHyC1HGcLyc10,4570
@@ -385,9 +386,9 @@ sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488
385
386
  sky/utils/kubernetes/kubernetes_deploy_utils.py,sha256=HPVgNt-wbCVPd9dpDFiA7t2mzQLpjXHJ61eiwRbEr-c,10378
386
387
  sky/utils/kubernetes/rsync_helper.sh,sha256=MT29sI5iD2QxYlXFwrN16oq0Er4TPFQVs4Z4A3U4a7Q,2483
387
388
  sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=Kq1MDygF2IxFmu9FXpCxqucXLmeUrvs6OtRij6XTQbo,6554
388
- skypilot_nightly-1.0.0.dev20250428.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
389
- skypilot_nightly-1.0.0.dev20250428.dist-info/METADATA,sha256=Am_UdBxssGMtUejgLqzSSURLxgUiGUYpSA_JlhqueiQ,18691
390
- skypilot_nightly-1.0.0.dev20250428.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
391
- skypilot_nightly-1.0.0.dev20250428.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
392
- skypilot_nightly-1.0.0.dev20250428.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
393
- skypilot_nightly-1.0.0.dev20250428.dist-info/RECORD,,
389
+ skypilot_nightly-1.0.0.dev20250429.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
390
+ skypilot_nightly-1.0.0.dev20250429.dist-info/METADATA,sha256=1ZxnDpIPo9-ouZMunTdwFjj6HmrqMgepoX04imAH6tQ,18731
391
+ skypilot_nightly-1.0.0.dev20250429.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
392
+ skypilot_nightly-1.0.0.dev20250429.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
393
+ skypilot_nightly-1.0.0.dev20250429.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
394
+ skypilot_nightly-1.0.0.dev20250429.dist-info/RECORD,,