skypilot-nightly 1.0.0.dev20251019__py3-none-any.whl → 1.0.0.dev20251021__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.

Potentially problematic release.


This version of skypilot-nightly might be problematic. Click here for more details.

Files changed (49) hide show
  1. sky/__init__.py +2 -2
  2. sky/adaptors/kubernetes.py +61 -0
  3. sky/backends/backend_utils.py +11 -11
  4. sky/backends/cloud_vm_ray_backend.py +15 -4
  5. sky/client/cli/command.py +39 -10
  6. sky/client/cli/flags.py +4 -2
  7. sky/client/sdk.py +26 -3
  8. sky/dashboard/out/404.html +1 -1
  9. sky/dashboard/out/_next/static/chunks/{webpack-3c431f6c9086e487.js → webpack-66f23594d38c7f16.js} +1 -1
  10. sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
  11. sky/dashboard/out/clusters/[cluster].html +1 -1
  12. sky/dashboard/out/clusters.html +1 -1
  13. sky/dashboard/out/config.html +1 -1
  14. sky/dashboard/out/index.html +1 -1
  15. sky/dashboard/out/infra/[context].html +1 -1
  16. sky/dashboard/out/infra.html +1 -1
  17. sky/dashboard/out/jobs/[job].html +1 -1
  18. sky/dashboard/out/jobs/pools/[pool].html +1 -1
  19. sky/dashboard/out/jobs.html +1 -1
  20. sky/dashboard/out/users.html +1 -1
  21. sky/dashboard/out/volumes.html +1 -1
  22. sky/dashboard/out/workspace/new.html +1 -1
  23. sky/dashboard/out/workspaces/[name].html +1 -1
  24. sky/dashboard/out/workspaces.html +1 -1
  25. sky/data/storage.py +2 -2
  26. sky/global_user_state.py +20 -20
  27. sky/jobs/server/server.py +10 -1
  28. sky/provision/kubernetes/network.py +9 -6
  29. sky/provision/provisioner.py +8 -0
  30. sky/serve/server/server.py +1 -0
  31. sky/server/common.py +9 -2
  32. sky/server/constants.py +1 -1
  33. sky/server/daemons.py +4 -2
  34. sky/server/requests/executor.py +10 -8
  35. sky/server/requests/payloads.py +2 -1
  36. sky/server/requests/preconditions.py +9 -4
  37. sky/server/requests/requests.py +118 -34
  38. sky/server/server.py +57 -24
  39. sky/server/stream_utils.py +127 -38
  40. sky/server/uvicorn.py +18 -17
  41. sky/utils/asyncio_utils.py +63 -3
  42. {skypilot_nightly-1.0.0.dev20251019.dist-info → skypilot_nightly-1.0.0.dev20251021.dist-info}/METADATA +35 -36
  43. {skypilot_nightly-1.0.0.dev20251019.dist-info → skypilot_nightly-1.0.0.dev20251021.dist-info}/RECORD +49 -49
  44. /sky/dashboard/out/_next/static/{8e35zdobdd0bK_Nkba03m → jDc1PlRsl9Cc5FQUMLBu8}/_buildManifest.js +0 -0
  45. /sky/dashboard/out/_next/static/{8e35zdobdd0bK_Nkba03m → jDc1PlRsl9Cc5FQUMLBu8}/_ssgManifest.js +0 -0
  46. {skypilot_nightly-1.0.0.dev20251019.dist-info → skypilot_nightly-1.0.0.dev20251021.dist-info}/WHEEL +0 -0
  47. {skypilot_nightly-1.0.0.dev20251019.dist-info → skypilot_nightly-1.0.0.dev20251021.dist-info}/entry_points.txt +0 -0
  48. {skypilot_nightly-1.0.0.dev20251019.dist-info → skypilot_nightly-1.0.0.dev20251021.dist-info}/licenses/LICENSE +0 -0
  49. {skypilot_nightly-1.0.0.dev20251019.dist-info → skypilot_nightly-1.0.0.dev20251021.dist-info}/top_level.txt +0 -0
sky/server/uvicorn.py CHANGED
@@ -46,11 +46,11 @@ except ValueError:
46
46
 
47
47
  # TODO(aylei): use decorator to register requests that need to be proactively
48
48
  # cancelled instead of hardcoding here.
49
- _RETRIABLE_REQUEST_NAMES = [
49
+ _RETRIABLE_REQUEST_NAMES = {
50
50
  'sky.logs',
51
51
  'sky.jobs.logs',
52
52
  'sky.serve.logs',
53
- ]
53
+ }
54
54
 
55
55
 
56
56
  def add_timestamp_prefix_for_server_logs() -> None:
@@ -151,37 +151,38 @@ class Server(uvicorn.Server):
151
151
  requests_lib.RequestStatus.PENDING,
152
152
  requests_lib.RequestStatus.RUNNING,
153
153
  ]
154
- reqs = requests_lib.get_request_tasks(
155
- req_filter=requests_lib.RequestTaskFilter(status=statuses))
156
- if not reqs:
154
+ requests = [(request_task.request_id, request_task.name)
155
+ for request_task in requests_lib.get_request_tasks(
156
+ req_filter=requests_lib.RequestTaskFilter(
157
+ status=statuses, fields=['request_id', 'name']))
158
+ ]
159
+ if not requests:
157
160
  break
158
- logger.info(f'{len(reqs)} on-going requests '
161
+ logger.info(f'{len(requests)} on-going requests '
159
162
  'found, waiting for them to finish...')
160
163
  # Proactively cancel internal requests and logs requests since
161
164
  # they can run for infinite time.
162
- internal_request_ids = [
165
+ internal_request_ids = {
163
166
  d.id for d in daemons.INTERNAL_REQUEST_DAEMONS
164
- ]
167
+ }
165
168
  if time.time() - start_time > _WAIT_REQUESTS_TIMEOUT_SECONDS:
166
169
  logger.warning('Timeout waiting for on-going requests to '
167
170
  'finish, cancelling all on-going requests.')
168
- for req in reqs:
169
- self.interrupt_request_for_retry(req.request_id)
171
+ for request_id, _ in requests:
172
+ self.interrupt_request_for_retry(request_id)
170
173
  break
171
174
  interrupted = 0
172
- for req in reqs:
173
- if req.request_id in internal_request_ids:
174
- self.interrupt_request_for_retry(req.request_id)
175
- interrupted += 1
176
- elif req.name in _RETRIABLE_REQUEST_NAMES:
177
- self.interrupt_request_for_retry(req.request_id)
175
+ for request_id, name in requests:
176
+ if (name in _RETRIABLE_REQUEST_NAMES or
177
+ request_id in internal_request_ids):
178
+ self.interrupt_request_for_retry(request_id)
178
179
  interrupted += 1
179
180
  # TODO(aylei): interrupt pending requests to accelerate the
180
181
  # shutdown.
181
182
  # If some requests are not interrupted, wait for them to finish,
182
183
  # otherwise we just check again immediately to accelerate the
183
184
  # shutdown process.
184
- if interrupted < len(reqs):
185
+ if interrupted < len(requests):
185
186
  time.sleep(_WAIT_REQUESTS_INTERVAL_SECONDS)
186
187
 
187
188
  def interrupt_request_for_retry(self, request_id: str) -> None:
@@ -2,17 +2,77 @@
2
2
 
3
3
  import asyncio
4
4
  import functools
5
+ from typing import Set
6
+
7
+ _background_tasks: Set[asyncio.Task] = set()
5
8
 
6
9
 
7
10
  def shield(func):
8
11
  """Shield the decorated async function from cancellation.
9
12
 
10
- Note that filelock.AsyncFileLock is not cancellation safe, thus the
11
- function calls filelock.AsyncFileLock must be shielded.
13
+ If the outter coroutine is cancelled, the inner decorated function
14
+ will be protected from cancellation by asyncio.shield(). And we will
15
+ maintain a reference to the the inner task to avoid it get GCed before
16
+ it is done.
17
+
18
+ For example, filelock.AsyncFileLock is not cancellation safe. The
19
+ following code:
20
+
21
+ async def fn_with_lock():
22
+ async with filelock.AsyncFileLock('lock'):
23
+ await asyncio.sleep(1)
24
+
25
+ is equivalent to:
26
+
27
+ # The lock may leak if the cancellation happens in
28
+ # lock.acquire() or lock.release()
29
+ async def fn_with_lock():
30
+ lock = filelock.AsyncFileLock('lock')
31
+ await lock.acquire()
32
+ try:
33
+ await asyncio.sleep(1)
34
+ finally:
35
+ await lock.release()
36
+
37
+ Shilding the function ensures there is no cancellation will happen in the
38
+ function, thus the lock will be released properly:
39
+
40
+ @shield
41
+ async def fn_with_lock()
42
+
43
+ Note that the resource acquisition and release should usually be protected
44
+ in one @shield block but not separately, e.g.:
45
+
46
+ lock = filelock.AsyncFileLock('lock')
47
+
48
+ @shield
49
+ async def acquire():
50
+ await lock.acquire()
51
+
52
+ @shield
53
+ async def release():
54
+ await lock.release()
55
+
56
+ async def fn_with_lock():
57
+ await acquire()
58
+ try:
59
+ do_something()
60
+ finally:
61
+ await release()
62
+
63
+ The above code is not safe because if `fn_with_lock` is cancelled,
64
+ `acquire()` and `release()` will be executed in the background
65
+ concurrently and causes race conditions.
12
66
  """
13
67
 
14
68
  @functools.wraps(func)
15
69
  async def async_wrapper(*args, **kwargs):
16
- return await asyncio.shield(func(*args, **kwargs))
70
+ task = asyncio.create_task(func(*args, **kwargs))
71
+ try:
72
+ return await asyncio.shield(task)
73
+ except asyncio.CancelledError:
74
+ _background_tasks.add(task)
75
+ task.add_done_callback(lambda _: _background_tasks.discard(task))
76
+ raise
17
77
 
18
78
  return async_wrapper
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: skypilot-nightly
3
- Version: 1.0.0.dev20251019
3
+ Version: 1.0.0.dev20251021
4
4
  Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
5
5
  Author: SkyPilot Team
6
6
  License: Apache 2.0
@@ -371,51 +371,51 @@ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "shadeform"
371
371
  Requires-Dist: aiosqlite; extra == "shadeform"
372
372
  Requires-Dist: greenlet; extra == "shadeform"
373
373
  Provides-Extra: all
374
- Requires-Dist: ibm-vpc; extra == "all"
375
- Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
376
- Requires-Dist: cudo-compute>=0.1.10; extra == "all"
377
374
  Requires-Dist: pyjwt; extra == "all"
378
- Requires-Dist: ibm-cloud-sdk-core; extra == "all"
379
- Requires-Dist: grpcio>=1.63.0; extra == "all"
380
- Requires-Dist: docker; extra == "all"
381
- Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
375
+ Requires-Dist: runpod>=1.6.1; extra == "all"
376
+ Requires-Dist: google-cloud-storage; extra == "all"
377
+ Requires-Dist: passlib; extra == "all"
382
378
  Requires-Dist: sqlalchemy_adapter; extra == "all"
379
+ Requires-Dist: docker; extra == "all"
383
380
  Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
384
- Requires-Dist: awscli>=1.27.10; extra == "all"
385
- Requires-Dist: nebius>=0.2.47; extra == "all"
386
- Requires-Dist: websockets; extra == "all"
387
- Requires-Dist: azure-cli>=2.65.0; extra == "all"
388
- Requires-Dist: casbin; extra == "all"
389
- Requires-Dist: aiohttp; extra == "all"
390
381
  Requires-Dist: anyio; extra == "all"
382
+ Requires-Dist: greenlet; extra == "all"
391
383
  Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
392
- Requires-Dist: colorama<0.4.5; extra == "all"
393
- Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
394
- Requires-Dist: ecsapi>=0.2.0; extra == "all"
395
- Requires-Dist: azure-common; extra == "all"
396
384
  Requires-Dist: ibm-cos-sdk; extra == "all"
397
- Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
398
385
  Requires-Dist: azure-core>=1.31.0; extra == "all"
386
+ Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
387
+ Requires-Dist: python-dateutil; extra == "all"
388
+ Requires-Dist: azure-core>=1.24.0; extra == "all"
389
+ Requires-Dist: aiosqlite; extra == "all"
390
+ Requires-Dist: ibm-vpc; extra == "all"
391
+ Requires-Dist: grpcio>=1.63.0; extra == "all"
392
+ Requires-Dist: awscli>=1.27.10; extra == "all"
393
+ Requires-Dist: aiohttp; extra == "all"
394
+ Requires-Dist: azure-identity>=1.19.0; extra == "all"
395
+ Requires-Dist: pydo>=0.3.0; extra == "all"
399
396
  Requires-Dist: botocore>=1.29.10; extra == "all"
400
- Requires-Dist: tomli; python_version < "3.11" and extra == "all"
397
+ Requires-Dist: ray[default]>=2.6.1; extra == "all"
401
398
  Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
402
399
  Requires-Dist: oci; extra == "all"
403
- Requires-Dist: azure-identity>=1.19.0; extra == "all"
404
- Requires-Dist: ray[default]>=2.6.1; extra == "all"
400
+ Requires-Dist: tomli; python_version < "3.11" and extra == "all"
401
+ Requires-Dist: msgraph-sdk; extra == "all"
402
+ Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
403
+ Requires-Dist: azure-cli>=2.65.0; extra == "all"
405
404
  Requires-Dist: msrestazure; extra == "all"
406
- Requires-Dist: aiosqlite; extra == "all"
407
- Requires-Dist: pydo>=0.3.0; extra == "all"
408
- Requires-Dist: python-dateutil; extra == "all"
409
- Requires-Dist: google-cloud-storage; extra == "all"
410
- Requires-Dist: greenlet; extra == "all"
411
- Requires-Dist: runpod>=1.6.1; extra == "all"
412
- Requires-Dist: boto3>=1.26.1; extra == "all"
405
+ Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
406
+ Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
407
+ Requires-Dist: ibm-cloud-sdk-core; extra == "all"
408
+ Requires-Dist: ecsapi>=0.2.0; extra == "all"
409
+ Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
410
+ Requires-Dist: nebius>=0.2.47; extra == "all"
411
+ Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
412
+ Requires-Dist: casbin; extra == "all"
413
+ Requires-Dist: azure-common; extra == "all"
414
+ Requires-Dist: cudo-compute>=0.1.10; extra == "all"
413
415
  Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
414
- Requires-Dist: azure-core>=1.24.0; extra == "all"
415
- Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
416
- Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
417
- Requires-Dist: passlib; extra == "all"
418
- Requires-Dist: msgraph-sdk; extra == "all"
416
+ Requires-Dist: colorama<0.4.5; extra == "all"
417
+ Requires-Dist: websockets; extra == "all"
418
+ Requires-Dist: boto3>=1.26.1; extra == "all"
419
419
  Provides-Extra: remote
420
420
  Requires-Dist: grpcio>=1.63.0; extra == "remote"
421
421
  Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "remote"
@@ -543,8 +543,7 @@ pip install "skypilot-nightly[kubernetes,aws,gcp,azure,oci,nebius,lambda,runpod,
543
543
  </p>
544
544
 
545
545
  Current supported infra: Kubernetes, AWS, GCP, Azure, OCI, Nebius, Lambda Cloud, RunPod, Fluidstack,
546
- Cudo, Digital Ocean, Paperspace, Cloudflare, Samsung, IBM, Vast.ai,
547
- VMware vSphere, Seeweb.
546
+ Cudo, Digital Ocean, Paperspace, Cloudflare, Samsung, IBM, Vast.ai, VMware vSphere, Seeweb, Prime Intellect.
548
547
  <p align="center">
549
548
  <img alt="SkyPilot" src="https://raw.githubusercontent.com/skypilot-org/skypilot/master/docs/source/images/cloud-logos-light.png" width=85%>
550
549
  </p>
@@ -1,4 +1,4 @@
1
- sky/__init__.py,sha256=IzcYu65Yfjbs5gQ7RmDZWLqAwbe3QdBcs4ZQjEJT9KU,6759
1
+ sky/__init__.py,sha256=jv0t0yYOLhKhzR_iYHMoQ4Ki_S1kGv7MQImR2yrWOe4,6759
2
2
  sky/admin_policy.py,sha256=XdcJnYqmude-LGGop-8U-FeiJcqtfYsYtIy4rmoCJnM,9799
3
3
  sky/authentication.py,sha256=BK5Fkuk3EmS4DwCrxI_8a4SQHUNFYu9GztWSzPissSA,20123
4
4
  sky/check.py,sha256=hBDTkiADC3HFfO6brZV819FVWcdOs3aiuhB6x6mY4Q4,29728
@@ -8,7 +8,7 @@ sky/core.py,sha256=VTHly9kJmwtmdiKwkrSrzuJ_8V8t-aI9weADd0SqDWA,58305
8
8
  sky/dag.py,sha256=0ZpAEDXuIFo1SP7YJpF9vXiFxpRwqP8od-UXMg95td8,3929
9
9
  sky/exceptions.py,sha256=DTQN5db2N6FntRRw0rRLyQG2q7HDvnylpvjkRF8wYBk,20830
10
10
  sky/execution.py,sha256=klMjceOMCMDzyYczazrT-kiS6kGqfyBO_9KvlZzyTUw,35849
11
- sky/global_user_state.py,sha256=dMAnV4VjC_FDTkvJMNSjFRp9rVjw85MAghAcjeim1oQ,103583
11
+ sky/global_user_state.py,sha256=z0DANJgt98PhxEBdPMIoofyv7VmiCC60weKkdaaqbcY,103865
12
12
  sky/models.py,sha256=ZKisLai7vqUr6_BPev6Oziu5N23WLzTh9nRtHSlRchw,3999
13
13
  sky/optimizer.py,sha256=iR57bL_8BeG6bh1sH3J6n6i65EBFjmyftezYM4nnDZA,64150
14
14
  sky/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -27,7 +27,7 @@ sky/adaptors/docker.py,sha256=_kzpZ0fkWHqqQAVVl0llTsCE31KYz3Sjn8psTBQHVkA,468
27
27
  sky/adaptors/gcp.py,sha256=oEb9jClEtApw6PQnxdxDYxOCYsedvM3aiko1EW1FDVo,3501
28
28
  sky/adaptors/hyperbolic.py,sha256=iyHDmtLFVTK9QajpAmObk0XO2OZnnO_1LbvDffPpt68,245
29
29
  sky/adaptors/ibm.py,sha256=7YbHrWbYcZsJDgxMBNZr1yBI03mjs_C3pnCTCz-MNtQ,5068
30
- sky/adaptors/kubernetes.py,sha256=KMXPv_hFh55mCTX1h1mUxk7EnwdHpLPPrEsGHlpS2FA,10352
30
+ sky/adaptors/kubernetes.py,sha256=7i3zfczdkxw21bOBBuXAdtp492_B6-tZAtqGOcF7lXE,12494
31
31
  sky/adaptors/nebius.py,sha256=i2FcELjztleXEjs554dbtiJ9hO_0tsF1N_GrlWLXE0Y,10722
32
32
  sky/adaptors/oci.py,sha256=xJt6J9xBSFIENa6FwEt1V1sZE8puAZ_vPEoGlyQACPs,2839
33
33
  sky/adaptors/primeintellect.py,sha256=rsdJpfJy7aYWL4fDpWUStuICdNF8POZckvndWWCE62E,37
@@ -38,8 +38,8 @@ sky/adaptors/vast.py,sha256=tpvmHi7IkQNzbbHVkeo04kUSajoEpSzXr2XgeO_I1LU,695
38
38
  sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
39
39
  sky/backends/__init__.py,sha256=l1xXpkzPFMma0ZkT4GzVMu7uvgS3AsECg6zLc0S3JHQ,702
40
40
  sky/backends/backend.py,sha256=zmF6TuKtUwzsP1hq0TI9nuuUySlPc9sgeW6F4GC8Ckk,8352
41
- sky/backends/backend_utils.py,sha256=sCnIJO52VowWcnQY1mmXyF-bN6avkHAHWXgNJ8RNC8I,179015
42
- sky/backends/cloud_vm_ray_backend.py,sha256=dfBbsOpecR4u82DDfqQjN5FYNqOUhIST8QnvGbAfmoE,309163
41
+ sky/backends/backend_utils.py,sha256=ZEt9vygw_0_Ap8gridSDxTS4T6V3CF7gQI51WaFdpmw,179077
42
+ sky/backends/cloud_vm_ray_backend.py,sha256=69dwp0frYRUiuimVNWvvjlPch0Zff5IZQjArRtoeXtA,309491
43
43
  sky/backends/docker_utils.py,sha256=_EhM6NStZDAwcegppQqExaB5iuSn1qL4xFFUqXAz2Uk,8392
44
44
  sky/backends/local_docker_backend.py,sha256=ncc8-WJrMRnqPl9fzvGr-nftIz7tTzKtUi-p_z_nH60,17366
45
45
  sky/backends/wheel_utils.py,sha256=DE71Muq5qLRhGpCVg1Rb6YOI7S_BzT8Hak27Pz8L4yw,12486
@@ -86,13 +86,13 @@ sky/catalog/data_fetchers/fetch_vsphere.py,sha256=Yf7tKzwJsQ_4f64IT1EAP108C1D3Rg
86
86
  sky/client/__init__.py,sha256=pz6xvVSd9X-gwqbsDL0E9QOojYqM0KAD0j-NCyCIF1k,38
87
87
  sky/client/common.py,sha256=j8ENgeRN3KdKBf0-pi1K9w1HtkqrkBR12QtF_wGWG8M,16950
88
88
  sky/client/oauth.py,sha256=sNJ_DMsSTcxluj5FeNQ2IafZJLImRFmCAZ79bXeABn4,2871
89
- sky/client/sdk.py,sha256=dQucC3YZ9v_iwKqN_nVc0pL1AbpsLvleY33ydY49XGk,108271
89
+ sky/client/sdk.py,sha256=HX9UGKggoV-qRYIl-iMhCwg5pTZF01SxUqikdxyEnwk,109351
90
90
  sky/client/sdk_async.py,sha256=8G_E9Dn4d80rV-wxRH4zZUXZGAm6rLw3C8PI07fXwwQ,31106
91
91
  sky/client/service_account_auth.py,sha256=5jXk0G6ufuW-SHCO7BEHQeTO0_2a8KfFmA63auXFRj4,1529
92
92
  sky/client/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
- sky/client/cli/command.py,sha256=kEwj0b7zbLTeJaditu0MXyNu1SosxiGcCGa1MtfRrnw,253296
93
+ sky/client/cli/command.py,sha256=qvTTVUjf2zPPVXZuugxwM4Q5bzP906tExyiDgPnWxRk,254404
94
94
  sky/client/cli/deprecation_utils.py,sha256=H_d5UyF2CekEoThduAzt5cihBO8hwKYMu0-Wqfbjv5E,3370
95
- sky/client/cli/flags.py,sha256=lLXHooU4HEslbHJuGAiCrKYkJZx99hAKaJbstw7s1bc,12136
95
+ sky/client/cli/flags.py,sha256=hwQ4Y9lwTbfqYoINWUTqRMGBoXxBy4_E5hqtXbBcEeg,12219
96
96
  sky/client/cli/table_utils.py,sha256=HT_y__9_tZLKJ0aJu-hh67cu3NXfWDoiHir5fTmWaDw,10156
97
97
  sky/clouds/__init__.py,sha256=JvZtCgauz5rAids-huDVeeTSyS59aBT1BqMtxvpuD_k,1810
98
98
  sky/clouds/aws.py,sha256=PrvbWuSAkPC18HsLVHx8NBJQiduz32NpDm1XXr6NPLo,63737
@@ -123,19 +123,17 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
123
123
  sky/clouds/utils/gcp_utils.py,sha256=09MF4Vx0EW7S-GXGpyxpl2aQlHrqeu9ioV0nyionAyk,9890
124
124
  sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
125
125
  sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
126
- sky/dashboard/out/404.html,sha256=ZZFWxMeDusBml1cy5ubJm1Rs5kfmT3zzT-E8AglTT0w,1423
127
- sky/dashboard/out/clusters.html,sha256=_QLKueJXQQkLJtoVf6MeoE7um0D8UUf__1ABmy0qHbs,1418
128
- sky/dashboard/out/config.html,sha256=u18AU2gTJ9Ty8-1jiywC3nkYXnB7Zu3a8LPxaDWIsik,1414
126
+ sky/dashboard/out/404.html,sha256=XkaZHbPpAin6nF-H68HUWUlCeNBUcXQ5wXOjZLGgjZo,1423
127
+ sky/dashboard/out/clusters.html,sha256=aqjkkeXJfJiQEvcMIWUfBCcNnd_Q3S0Aq0gmGncA9zs,1418
128
+ sky/dashboard/out/config.html,sha256=6dmXmdjgxoLRen7KcsOIMiqq7i5WdZ_dadfJQBKLRB4,1414
129
129
  sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
130
- sky/dashboard/out/index.html,sha256=g_oYqTqpQ1I3cGE9Si-k7APcMbIvodzuLnY7zutdHVg,1407
131
- sky/dashboard/out/infra.html,sha256=J_Jwycqtq5Je6-Gvt-r9HItuusDLnFJYKKIRdTie1EE,1412
132
- sky/dashboard/out/jobs.html,sha256=v09nHsXWj6Fgez1yH0VNPyB4eYr8wQhZ1UwpND85pBA,1410
130
+ sky/dashboard/out/index.html,sha256=UQrAYcWYdvCB2YPLFUSx-D3MBY-UN013Pj0JqWMK1z4,1407
131
+ sky/dashboard/out/infra.html,sha256=wQUzn2B0R_x7Ug25wnbwEBCqVF4sX3b_I9c_EWMTz4g,1412
132
+ sky/dashboard/out/jobs.html,sha256=7Ipp1vXeVo9ZMraq9QGj5rdtkR2kavv0KjQJtZHbTGM,1410
133
133
  sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
134
- sky/dashboard/out/users.html,sha256=mV_NB80J6aActA3whc6Vdt3rsGwimKb9jWDok9EdFaU,1412
135
- sky/dashboard/out/volumes.html,sha256=eFuM6INXz-QmqqrCmXO2HDvjBT6ebLjroT65P29P8aA,1416
136
- sky/dashboard/out/workspaces.html,sha256=GmZSdp0FJIOPqVVB7gCUBnW4Hl9xv2n1TUKvFtI-cMc,1422
137
- sky/dashboard/out/_next/static/8e35zdobdd0bK_Nkba03m/_buildManifest.js,sha256=1ombZKzLAegWk-mEKBFMtiwI-xk8sWY2rYidGQBNj7Y,2394
138
- sky/dashboard/out/_next/static/8e35zdobdd0bK_Nkba03m/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
134
+ sky/dashboard/out/users.html,sha256=z1IEVxr6SiEnYOAQFWu3nJgoKJh-amxfnYK42XlVYXs,1412
135
+ sky/dashboard/out/volumes.html,sha256=n1eJAqQjng8M87tYdYfT0zHYgc1jxvNVxvHzgXfx918,1416
136
+ sky/dashboard/out/workspaces.html,sha256=kTRoWAtz87cU6zTca1vnLRZxrK6CzWPbGZTBpOh9GgI,1422
139
137
  sky/dashboard/out/_next/static/chunks/1121-d0782b9251f0fcd3.js,sha256=jIvnDxaTleAz3HdZK9-RScSB0ZMg8-D63KQmn8avaHI,8883
140
138
  sky/dashboard/out/_next/static/chunks/1141-3b40c39626f99c89.js,sha256=M5vM2c9SRPEly-CQj0Vj7wJzyFSyuALDik9KFLXWmec,18285
141
139
  sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
@@ -171,7 +169,7 @@ sky/dashboard/out/_next/static/chunks/framework-cf60a09ccd051a10.js,sha256=_Qbam
171
169
  sky/dashboard/out/_next/static/chunks/main-app-587214043926b3cc.js,sha256=t7glRfataAjNw691Wni-ZU4a3BsygRzPKoI8NOm-lsY,116244
172
170
  sky/dashboard/out/_next/static/chunks/main-f15ccb73239a3bf1.js,sha256=jxOPLDVX3rkMc_jvGx2a-N2v6mvfOa8O6V0o-sLT0tI,110208
173
171
  sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
174
- sky/dashboard/out/_next/static/chunks/webpack-3c431f6c9086e487.js,sha256=zfNgAId8Pn7_z_JGOK8_AgEsEMD8P0R7hP_cSg3bPuk,4770
172
+ sky/dashboard/out/_next/static/chunks/webpack-66f23594d38c7f16.js,sha256=-I_5dIeLkBzeXUkajoN-Bp72fpfSGN3b4cefd134guY,4770
175
173
  sky/dashboard/out/_next/static/chunks/pages/_app-ce361c6959bc2001.js,sha256=mllo4Yasw61zRtEO49uE_MrAutg9josSJShD0DNSjf0,95518
176
174
  sky/dashboard/out/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
177
175
  sky/dashboard/out/_next/static/chunks/pages/clusters-2f61f65487f6d8ff.js,sha256=oo_EAAsi1TLXO-art_64PTCZjakwl-7wVUZnB3-SJK8,869
@@ -190,19 +188,21 @@ sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-bc979970c247d8f3.j
190
188
  sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
191
189
  sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-e8688c35c06f0ac5.js,sha256=TVmk0pD0iszL39u2Ru56HLEFFLO648NeT2KbEcW5X5o,1495
192
190
  sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
193
- sky/dashboard/out/clusters/[cluster].html,sha256=GBMIQ0flAYGi6oz8_Db-LvAcT-aJ60gLodIBpp6vCec,2937
194
- sky/dashboard/out/clusters/[cluster]/[job].html,sha256=gx6oqTToIiRWVO9y7KLYfH8ZHCJhXoEQ9uMqXRcYRNY,2073
195
- sky/dashboard/out/infra/[context].html,sha256=_iGxcmsDiZE6KqXv4VRuh0iZOuabWedorHTaiP6c2m8,1436
196
- sky/dashboard/out/jobs/[job].html,sha256=eIpXZPLBvjtp3XHPhGtUT5m-6KjVV0mzvT2vy8le1UQ,2305
197
- sky/dashboard/out/jobs/pools/[pool].html,sha256=YGRbSq9ezTptvgDOj6C8zx1CvOUhT39MoDk5zIYDFo4,2143
191
+ sky/dashboard/out/_next/static/jDc1PlRsl9Cc5FQUMLBu8/_buildManifest.js,sha256=1ombZKzLAegWk-mEKBFMtiwI-xk8sWY2rYidGQBNj7Y,2394
192
+ sky/dashboard/out/_next/static/jDc1PlRsl9Cc5FQUMLBu8/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
193
+ sky/dashboard/out/clusters/[cluster].html,sha256=nwHaSV_CdmSSbcAYEDPDxt45l0d4Cq_5Zuxnmu6PKiQ,2937
194
+ sky/dashboard/out/clusters/[cluster]/[job].html,sha256=KryQk-5UcutKMRAR0X7u8mczTtkyJcYia0J4XLl4jGU,2073
195
+ sky/dashboard/out/infra/[context].html,sha256=qFM4K6wza2zb2Tol5F3ZVXtrL5vAD7jkRMblNzkSCa8,1436
196
+ sky/dashboard/out/jobs/[job].html,sha256=XuJU5wd7jcg7gOGEOi5MIxglk-U846sIaYzK26tffa0,2305
197
+ sky/dashboard/out/jobs/pools/[pool].html,sha256=nFJKWLcsmYKAp8U9HWnU8XChDY7ui1Xv1dGHRXsE9cA,2143
198
198
  sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
199
- sky/dashboard/out/workspace/new.html,sha256=8kDHEWDZsXLmy3hsRUy7xhbvqUTak-5d8tmyocV6dx0,1428
200
- sky/dashboard/out/workspaces/[name].html,sha256=Hkx-rPIBioqK6wI5eA5GbTsoXnSEr_YjYpL0VjbHI3g,2759
199
+ sky/dashboard/out/workspace/new.html,sha256=_q55HUPjumizyTt0Bc--LWtg0yq4m170Ou0gJCb--xs,1428
200
+ sky/dashboard/out/workspaces/[name].html,sha256=mrgqAKHtWAemaCMX-dfj1HRJjVCU9_LYIAUqfNn3DWk,2759
201
201
  sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
202
202
  sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
203
203
  sky/data/data_utils.py,sha256=AjEA_JRjo9NBMlv-Lq5iV4lBED_YZ1VqBR9pG6fGVWE,35179
204
204
  sky/data/mounting_utils.py,sha256=trsjpEfQmsctEi6OHMKVSL915OEDdrQVlwTlkXrd4r0,26479
205
- sky/data/storage.py,sha256=y6cIgfmhgL8ldjHR7whg2q71TzFQ3Lxiyv6d3anC62I,209290
205
+ sky/data/storage.py,sha256=xtCiDakdBxDOhG1DatGsi0N8BYk29WCkV0d01sa3RKw,209293
206
206
  sky/data/storage_utils.py,sha256=bqCE7WQVOpFMxqVRkxee4oLn-iImh4ZL8qB5IicXh0w,14230
207
207
  sky/jobs/__init__.py,sha256=BiABNdlab7xZDOv4C34kc1XuxG6C_Ip7Q96mT2iCnIg,1686
208
208
  sky/jobs/constants.py,sha256=ysm4RpmIshuJDdcLWK2-NmsAbeLAiS1qKKP_4hWgQeA,3057
@@ -216,7 +216,7 @@ sky/jobs/client/sdk.py,sha256=HQdnZtK-yWXvOX5XEVZU145vIzfCvYZFtL6uzQEm6-c,17133
216
216
  sky/jobs/client/sdk_async.py,sha256=hsyPshdpbKG0RUzw2ntDeAJAkOIl-O9WDoSREV_km3o,4875
217
217
  sky/jobs/server/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
218
218
  sky/jobs/server/core.py,sha256=DFfg-shgb6Cx5g2dZsrFlXHmIdOh3U0JqSq5V9OTbkc,48407
219
- sky/jobs/server/server.py,sha256=jhNce-JfxVJxEa3hKT1IqyHszCGGFMhEk1KGdRKnBIM,9045
219
+ sky/jobs/server/server.py,sha256=_yJaZjugwrqSCKQBdEaTvkUiPKuNA_L5HTsPI2sjEUs,9545
220
220
  sky/jobs/server/utils.py,sha256=rI_fVyEJhHjuapcB6JefkKgRuT_VeLiubAixsPo5jj0,5023
221
221
  sky/logs/__init__.py,sha256=zW4gAEvWDz5S53FlLp3krAuKrmTSJ0e3kZDnhxSbW4E,722
222
222
  sky/logs/agent.py,sha256=Jwpzio10P45BS6cugt6Ovu3_ZhysuXVcL_aneYZQENE,4766
@@ -231,7 +231,7 @@ sky/provision/docker_utils.py,sha256=DLot-fMAg7bQh_cgpcXjlD3tBvcOGbfyBezX-DzKHAM
231
231
  sky/provision/instance_setup.py,sha256=xJy4802XzOWvyggcurSF_6zuS_aR2jgNhWAYo1WBbqA,28103
232
232
  sky/provision/logging.py,sha256=_sx_TH6nLt0FF3myS5pEZbiMhXyl4s1XwMidu_TTBUw,2091
233
233
  sky/provision/metadata_utils.py,sha256=LrxeV4wD2QPzNdXV_npj8q-pr35FatxBBjF_jSbpOT0,4013
234
- sky/provision/provisioner.py,sha256=tc26bTCgp-uzeWx3F1mEwUrSP7tTVsc_ol-Wv9TulUA,33629
234
+ sky/provision/provisioner.py,sha256=jbDR-FR7b1ikm_2gu4RURPJo1SQ2GLg1KpWZf4zGB4Q,34028
235
235
  sky/provision/aws/__init__.py,sha256=mxq8PeWJqUtalDozTNpbtENErRZ1ktEs8uf2aG9UUgU,731
236
236
  sky/provision/aws/config.py,sha256=nqMOCNWgVJ97gzsLoMoiGwyWRfgPasBeRwMeE73XnBo,32025
237
237
  sky/provision/aws/instance.py,sha256=KrLPyZhvKQpwO4_zhQMb5GwRrtooMv_P6vwpCC9C0C4,45851
@@ -270,7 +270,7 @@ sky/provision/kubernetes/__init__.py,sha256=xUHCbN5fkbnM5_E1trFHHOndTsvEwBdi-8qv
270
270
  sky/provision/kubernetes/config.py,sha256=iY6WfgmRK_z5mzHGe_8hQS2Op3qKmZ18UY2MgArIGRE,27782
271
271
  sky/provision/kubernetes/constants.py,sha256=vZJQsAVjAgwsOskB48tIFSXtNw7IFnJOQE_H6N-vOYQ,1130
272
272
  sky/provision/kubernetes/instance.py,sha256=VK8zbeNExCQC4UkDyDmy9Gs2JaXWBGEQ4nlKOptVjWU,76932
273
- sky/provision/kubernetes/network.py,sha256=Dgj8u7IQBHKHt-mSDhYzue1wfDk96FR_8fO89TwuZ2E,12846
273
+ sky/provision/kubernetes/network.py,sha256=NXwG2VGA-xekmbydFbivdfyZla0JVW2cWN4SDEe5x4s,12822
274
274
  sky/provision/kubernetes/network_utils.py,sha256=qFiACDq4S1WKMyVbxhGax-K2SJM-4viC8CyEzwvXt6c,11480
275
275
  sky/provision/kubernetes/utils.py,sha256=8kfYAae6fqAA-gqsC-agUN5_QvdxLG3rZW4nhEefqIo,153961
276
276
  sky/provision/kubernetes/volume.py,sha256=b5mozvUCw9rsGxiUS9LxR-MyELK-EQHYglJkGTFNobY,11473
@@ -388,18 +388,18 @@ sky/serve/client/sdk_async.py,sha256=idvbLb6q_NBo79OnXE-3SF-bwYFMPzDg_khiNqOLd3o
388
388
  sky/serve/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
389
  sky/serve/server/core.py,sha256=4w79PONDX5hAem95U1MRDHZ1VNMaBZJkI6hv5d2IKjQ,11011
390
390
  sky/serve/server/impl.py,sha256=oQL6qd-rTq9M7Qs3n-fCv0vyQe1F9dAid_OgmRCjyjs,48982
391
- sky/serve/server/server.py,sha256=pqWcgGSeC_OzmQ5KOE3uEDTgc39Kx3cS_o55QX-l4_U,4591
391
+ sky/serve/server/server.py,sha256=UXsIqwAZn4RYQTJqQn8syBa-lZ2ZY0eIWmOfG32uquU,4633
392
392
  sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
393
- sky/server/common.py,sha256=wwkKc6xOCjV7MkczLa-NWmfEjEKah_HzfDRpNOcxvGY,40472
393
+ sky/server/common.py,sha256=yAIg6Zr-PV3ex1KqJGt7qfoyYi6d2zgqsUkvaJ6E0uA,40722
394
394
  sky/server/config.py,sha256=oQO2Wls01oYIIr4h7B6UiPBNPcsqHlCJ3batir-Zx80,11143
395
- sky/server/constants.py,sha256=XkwSIXR0wSJhopbtGwxYTHJZWYQ2UmpgrgZ1YQRB8SI,2615
396
- sky/server/daemons.py,sha256=XQdqRMVyxyqS9fY2HLqW_cxVR6qgqoQ7irPvRYWvG7E,9092
395
+ sky/server/constants.py,sha256=54w38B5AsRVCMCPP_iN7YoaApxbcttt3pue0VEP9DWg,2615
396
+ sky/server/daemons.py,sha256=pEmLE0JsR6C8ZSxt8sr4ncPfZcDYvXqDCycU0IDcQ8U,9238
397
397
  sky/server/metrics.py,sha256=8mTyD-zo2gyAJSPJyCtTR8oImeFJ2K-sAdlje5Bf5U4,5781
398
398
  sky/server/rest.py,sha256=Op7WNtfNey3XnBLMBx7S4KryiBhL9UCYhMxQgVo1Ybw,14813
399
- sky/server/server.py,sha256=LopC2GPcvpmk4NhBY_eTOE-2uHPmKjpV4Kf2DCSwMWA,86040
399
+ sky/server/server.py,sha256=2h7iXQQHl1RWRsLprst63LpPplZMD3d4sKhjlGuNt6I,87716
400
400
  sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
401
- sky/server/stream_utils.py,sha256=L3McETsgit4iONYEvHR7Qzylk7OtMzmnxoS-L0vLMzI,12539
402
- sky/server/uvicorn.py,sha256=lJROnpJqoZr59zGwYa_pUniV7rEwmZn0PV4t-YYY-yo,11832
401
+ sky/server/stream_utils.py,sha256=9yHkB5Gkpago3WgR_sKBK5nJTpUYlBcYgTGVqMPYm9k,16750
402
+ sky/server/uvicorn.py,sha256=etFyJP9Kz5uRhM619VrQMiVhJKWPxTqbaz9H1wW1EWs,11955
403
403
  sky/server/versions.py,sha256=3atZzUa7y1XeKNcrfVxKWAo_5ZyCOnbY7DKpIqed7Do,10011
404
404
  sky/server/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
405
  sky/server/auth/authn.py,sha256=zvabLsEAf9Ql6AbXJuWZ54uaiOr1mwFGGvQn84v66H4,2037
@@ -409,11 +409,11 @@ sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
409
409
  sky/server/html/token_page.html,sha256=eUndS5u1foL9vaWGPRTLMt7lCzD1g0wYJ2v_EeeFzlc,7046
410
410
  sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
411
411
  sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
412
- sky/server/requests/executor.py,sha256=aks5un_Ezrl5r2WGjvMb5DwUebyzcb_c9lGDBxuOPqg,36699
413
- sky/server/requests/payloads.py,sha256=nhOGOk-AZApLQBdKLRAtQ3MF7WkJxBA-ZAuF9nMsCxk,28093
414
- sky/server/requests/preconditions.py,sha256=y8HxFzWAkhSOPmHL6iWY2hSPlu_ORy5aB0X1EVA7DPA,7165
412
+ sky/server/requests/executor.py,sha256=rT-c5mP5U2rj97FMqavmVje9G3dnmnwLNL9Iv_PwUH0,36826
413
+ sky/server/requests/payloads.py,sha256=l576VHx_w37iOgFcqw82muH7HOI0Eh-_wckYn-_9EAg,28128
414
+ sky/server/requests/preconditions.py,sha256=L_4ow2Twl0h2sk2P4waL2e1WVfYm4p4DFwmR6Nip8Bw,7486
415
415
  sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
416
- sky/server/requests/requests.py,sha256=XNu00x913d7vTF-VtdIjc-v4Lxe9Uv7K1mKmjNkbTN8,35925
416
+ sky/server/requests/requests.py,sha256=chS9MRS5lOLpboj4bHXeIjht3r9EaclWsW327AlT7dE,39530
417
417
  sky/server/requests/threads.py,sha256=AwzbcoeLDz5RnSi0jJSD3u4lGDiYkCaa1qDvPkUqeMI,4131
418
418
  sky/server/requests/queues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
419
419
  sky/server/requests/queues/local_queue.py,sha256=X6VkBiUmgd_kfqIK1hCtMWG1b8GiZbY70TBiBR6c6GY,416
@@ -503,7 +503,7 @@ sky/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
503
503
  sky/utils/accelerator_registry.py,sha256=DUG-KA6LTNvcadD18DK6hjBhqjlfp8FxymhxYSdw-QM,4955
504
504
  sky/utils/admin_policy_utils.py,sha256=VkE3FGzv5a7KnRO0R1PX0buJ274vF__n1xgXJ_9ykTs,7105
505
505
  sky/utils/annotations.py,sha256=No49yFuNIGtFgxU1bmBh2REx_Yn08o7Is-c56QynDIs,1910
506
- sky/utils/asyncio_utils.py,sha256=5iydD0HIHZLMAGk-uD3VyweEUsi3qDy1LHuNjHdsUC4,440
506
+ sky/utils/asyncio_utils.py,sha256=DswTxrO-dsPZZgEX_zG73lUanxAX2VRQzicsMaLY2vI,2290
507
507
  sky/utils/atomic.py,sha256=vrw-7XCnckF0xCx-ttamao7evPdGtVsnjaTtgMlBXIE,1280
508
508
  sky/utils/auth_utils.py,sha256=1ugVMGEglEyTsvtZJtv06eNewGudvaWd152cShkUyuI,6238
509
509
  sky/utils/benchmark_utils.py,sha256=vBqvgS-7XBat9N4UvtmxXS70i2EQUa4BUv4fsF8g58A,1635
@@ -578,9 +578,9 @@ sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
578
578
  sky/workspaces/core.py,sha256=kRrdh-8MhX1953pML1B_DoStnDuNrsmHcZlnWoAxVo0,27218
579
579
  sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
580
580
  sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
581
- skypilot_nightly-1.0.0.dev20251019.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
582
- skypilot_nightly-1.0.0.dev20251019.dist-info/METADATA,sha256=ElQdqqozFhbE-IIjHrSNTiCAP8xvwuurHv3d0dU_K0U,31200
583
- skypilot_nightly-1.0.0.dev20251019.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
584
- skypilot_nightly-1.0.0.dev20251019.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
585
- skypilot_nightly-1.0.0.dev20251019.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
586
- skypilot_nightly-1.0.0.dev20251019.dist-info/RECORD,,
581
+ skypilot_nightly-1.0.0.dev20251021.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
582
+ skypilot_nightly-1.0.0.dev20251021.dist-info/METADATA,sha256=A4ucEhW_X6hqtcFruXQ9SThkhCPnXLWASEMbafzEPtc,31217
583
+ skypilot_nightly-1.0.0.dev20251021.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
584
+ skypilot_nightly-1.0.0.dev20251021.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
585
+ skypilot_nightly-1.0.0.dev20251021.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
586
+ skypilot_nightly-1.0.0.dev20251021.dist-info/RECORD,,