skypilot-nightly 1.0.0.dev20250829__py3-none-any.whl → 1.0.0.dev20250901__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/nebius.py +24 -2
  3. sky/backends/backend_utils.py +39 -36
  4. sky/backends/cloud_vm_ray_backend.py +37 -0
  5. sky/client/cli/command.py +17 -6
  6. sky/client/common.py +5 -4
  7. sky/client/sdk.py +5 -0
  8. sky/client/sdk_async.py +8 -2
  9. sky/core.py +8 -3
  10. sky/dashboard/out/404.html +1 -1
  11. sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
  12. sky/dashboard/out/clusters/[cluster].html +1 -1
  13. sky/dashboard/out/clusters.html +1 -1
  14. sky/dashboard/out/config.html +1 -1
  15. sky/dashboard/out/index.html +1 -1
  16. sky/dashboard/out/infra/[context].html +1 -1
  17. sky/dashboard/out/infra.html +1 -1
  18. sky/dashboard/out/jobs/[job].html +1 -1
  19. sky/dashboard/out/jobs/pools/[pool].html +1 -1
  20. sky/dashboard/out/jobs.html +1 -1
  21. sky/dashboard/out/users.html +1 -1
  22. sky/dashboard/out/volumes.html +1 -1
  23. sky/dashboard/out/workspace/new.html +1 -1
  24. sky/dashboard/out/workspaces/[name].html +1 -1
  25. sky/dashboard/out/workspaces.html +1 -1
  26. sky/global_user_state.py +67 -0
  27. sky/provision/docker_utils.py +1 -1
  28. sky/provision/kubernetes/utils.py +39 -26
  29. sky/server/common.py +8 -6
  30. sky/server/metrics.py +82 -6
  31. sky/server/requests/executor.py +5 -1
  32. sky/server/requests/payloads.py +1 -0
  33. sky/server/requests/requests.py +19 -11
  34. sky/server/server.py +46 -14
  35. sky/server/uvicorn.py +7 -0
  36. sky/setup_files/dependencies.py +23 -8
  37. sky/setup_files/setup.py +2 -0
  38. sky/skylet/constants.py +3 -0
  39. sky/utils/db/db_utils.py +56 -4
  40. sky/utils/perf_utils.py +22 -0
  41. sky/utils/schemas.py +6 -0
  42. {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/METADATA +35 -50
  43. {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/RECORD +49 -48
  44. /sky/dashboard/out/_next/static/{hYJYFIxp_ZFONR4wTIJqZ → EqPZ0ygxa__3XPBVJ9dpy}/_buildManifest.js +0 -0
  45. /sky/dashboard/out/_next/static/{hYJYFIxp_ZFONR4wTIJqZ → EqPZ0ygxa__3XPBVJ9dpy}/_ssgManifest.js +0 -0
  46. {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/WHEEL +0 -0
  47. {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/entry_points.txt +0 -0
  48. {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/licenses/LICENSE +0 -0
  49. {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/top_level.txt +0 -0
sky/utils/db/db_utils.py CHANGED
@@ -5,9 +5,10 @@ import enum
5
5
  import sqlite3
6
6
  import threading
7
7
  import typing
8
- from typing import Any, Callable, Optional
8
+ from typing import Any, Callable, Iterable, Optional
9
9
 
10
10
  import aiosqlite
11
+ import aiosqlite.context
11
12
  import sqlalchemy
12
13
  from sqlalchemy import exc as sqlalchemy_exc
13
14
 
@@ -286,11 +287,62 @@ class SQLiteConn(threading.local):
286
287
  self.cursor = self.conn.cursor()
287
288
  create_table(self.cursor, self.conn)
288
289
  self._async_conn: Optional[aiosqlite.Connection] = None
289
- self._async_conn_lock = asyncio.Lock()
290
-
291
- async def async_conn(self) -> aiosqlite.Connection:
290
+ self._async_conn_lock: Optional[asyncio.Lock] = None
291
+
292
+ async def _get_async_conn(self) -> aiosqlite.Connection:
293
+ """Get the shared aiosqlite connection for current thread.
294
+
295
+ Typically, external caller should not get the connection directly,
296
+ instead, SQLiteConn.{operation}_async methods should be used. This
297
+ is to avoid txn interleaving on the shared aiosqlite connection.
298
+ E.g.
299
+ coroutine 1:
300
+ A: await write(row1)
301
+ B: cursor = await conn.execute(read_row1)
302
+ C: await cursor.fetchall()
303
+ coroutine 2:
304
+ D: await write(row2)
305
+ E: cursor = await conn.execute(read_row2)
306
+ F: await cursor.fetchall()
307
+ The A -> B -> D -> E -> C time sequence will cause B and D read at the
308
+ same snapshot point when B started, thus cause coroutine2 lost the
309
+ read-after-write consistency. When you are adding new async operations
310
+ to SQLiteConn, make sure the txn pattern does not cause this issue.
311
+ """
312
+ # Python 3.8 binds current event loop to asyncio.Lock(), which requires
313
+ # a loop available in current thread. Lazy-init the lock to avoid this
314
+ # dependency. The correctness is guranteed since SQLiteConn is
315
+ # thread-local so there is no race condition between check and init.
316
+ if self._async_conn_lock is None:
317
+ self._async_conn_lock = asyncio.Lock()
292
318
  if self._async_conn is None:
293
319
  async with self._async_conn_lock:
294
320
  if self._async_conn is None:
321
+ # Init logic like requests.init_db_within_lock will handle
322
+ # initialization like setting the WAL mode, so we do not
323
+ # duplicate that logic here.
295
324
  self._async_conn = await aiosqlite.connect(self.db_path)
296
325
  return self._async_conn
326
+
327
+ async def execute_and_commit_async(self,
328
+ sql: str,
329
+ parameters: Optional[
330
+ Iterable[Any]] = None) -> None:
331
+ """Execute the sql and commit the transaction in a sync block."""
332
+ conn = await self._get_async_conn()
333
+
334
+ def exec_and_commit(sql: str, parameters: Optional[Iterable[Any]]):
335
+ # pylint: disable=protected-access
336
+ conn._conn.execute(sql, parameters)
337
+ conn._conn.commit()
338
+
339
+ # pylint: disable=protected-access
340
+ await conn._execute(exec_and_commit, sql, parameters)
341
+
342
+ @aiosqlite.context.contextmanager
343
+ async def execute_fetchall_async(self,
344
+ sql: str,
345
+ parameters: Optional[Iterable[Any]] = None
346
+ ) -> Iterable[sqlite3.Row]:
347
+ conn = await self._get_async_conn()
348
+ return await conn.execute_fetchall(sql, parameters)
@@ -0,0 +1,22 @@
1
+ """Utility functions for performance monitoring."""
2
+ import os
3
+ from typing import Optional
4
+
5
+ from sky import sky_logging
6
+ from sky.skylet import constants
7
+
8
+ logger = sky_logging.init_logger(__name__)
9
+
10
+
11
+ def get_loop_lag_threshold() -> Optional[float]:
12
+ """Get the loop lag threshold from the environment variable."""
13
+ lag_threshold = os.getenv(constants.ENV_VAR_LOOP_LAG_THRESHOLD_MS, None)
14
+ if lag_threshold is not None:
15
+ try:
16
+ return float(lag_threshold) / 1000.0
17
+ except ValueError:
18
+ logger.warning(
19
+ f'Invalid value for {constants.ENV_VAR_LOOP_LAG_THRESHOLD_MS}:'
20
+ f' {lag_threshold}')
21
+ return None
22
+ return None
sky/utils/schemas.py CHANGED
@@ -1410,6 +1410,9 @@ def get_config_schema():
1410
1410
  **_NETWORK_CONFIG_SCHEMA, 'tenant_id': {
1411
1411
  'type': 'string',
1412
1412
  },
1413
+ 'domain': {
1414
+ 'type': 'string',
1415
+ },
1413
1416
  'region_configs': {
1414
1417
  'type': 'object',
1415
1418
  'required': [],
@@ -1668,6 +1671,9 @@ def get_config_schema():
1668
1671
  'tenant_id': {
1669
1672
  'type': 'string',
1670
1673
  },
1674
+ 'domain': {
1675
+ 'type': 'string',
1676
+ },
1671
1677
  'disabled': {
1672
1678
  'type': 'boolean'
1673
1679
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: skypilot-nightly
3
- Version: 1.0.0.dev20250829
3
+ Version: 1.0.0.dev20250901
4
4
  Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
5
5
  Author: SkyPilot Team
6
6
  License: Apache 2.0
@@ -13,6 +13,8 @@ Classifier: Programming Language :: Python :: 3.8
13
13
  Classifier: Programming Language :: Python :: 3.9
14
14
  Classifier: Programming Language :: Python :: 3.10
15
15
  Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
16
18
  Classifier: License :: OSI Approved :: Apache Software License
17
19
  Classifier: Operating System :: OS Independent
18
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
@@ -20,6 +22,8 @@ Classifier: Topic :: System :: Distributed Computing
20
22
  Description-Content-Type: text/markdown
21
23
  License-File: LICENSE
22
24
  Requires-Dist: wheel<0.46.0
25
+ Requires-Dist: setuptools
26
+ Requires-Dist: pip
23
27
  Requires-Dist: cachetools
24
28
  Requires-Dist: click<8.2.0,>=7.0
25
29
  Requires-Dist: colorama
@@ -75,7 +79,6 @@ Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "azure"
75
79
  Requires-Dist: azure-storage-blob>=12.23.1; extra == "azure"
76
80
  Requires-Dist: msgraph-sdk; extra == "azure"
77
81
  Requires-Dist: msrestazure; extra == "azure"
78
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "azure"
79
82
  Provides-Extra: gcp
80
83
  Requires-Dist: google-api-python-client>=2.69.0; extra == "gcp"
81
84
  Requires-Dist: google-cloud-storage; extra == "gcp"
@@ -99,7 +102,6 @@ Provides-Extra: scp
99
102
  Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "scp"
100
103
  Provides-Extra: oci
101
104
  Requires-Dist: oci; extra == "oci"
102
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "oci"
103
105
  Provides-Extra: kubernetes
104
106
  Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "kubernetes"
105
107
  Requires-Dist: websockets; extra == "kubernetes"
@@ -143,65 +145,48 @@ Requires-Dist: grpcio>=1.63.0; extra == "server"
143
145
  Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "server"
144
146
  Requires-Dist: aiosqlite; extra == "server"
145
147
  Provides-Extra: all
146
- Requires-Dist: awscli>=1.27.10; extra == "all"
147
148
  Requires-Dist: botocore>=1.29.10; extra == "all"
148
- Requires-Dist: boto3>=1.26.1; extra == "all"
149
- Requires-Dist: colorama<0.4.5; extra == "all"
150
- Requires-Dist: azure-cli>=2.65.0; extra == "all"
151
- Requires-Dist: azure-core>=1.31.0; extra == "all"
152
149
  Requires-Dist: azure-identity>=1.19.0; extra == "all"
150
+ Requires-Dist: nebius>=0.2.47; extra == "all"
151
+ Requires-Dist: websockets; extra == "all"
152
+ Requires-Dist: casbin; extra == "all"
153
+ Requires-Dist: runpod>=1.6.1; extra == "all"
154
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
155
+ Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
156
+ Requires-Dist: ibm-cos-sdk; extra == "all"
153
157
  Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
154
- Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
155
- Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
156
- Requires-Dist: msgraph-sdk; extra == "all"
157
- Requires-Dist: msrestazure; extra == "all"
158
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
159
- Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
160
- Requires-Dist: google-cloud-storage; extra == "all"
158
+ Requires-Dist: ibm-vpc; extra == "all"
161
159
  Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
160
+ Requires-Dist: azure-core>=1.31.0; extra == "all"
162
161
  Requires-Dist: ibm-cloud-sdk-core; extra == "all"
163
- Requires-Dist: ibm-vpc; extra == "all"
164
- Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
165
- Requires-Dist: ibm-cos-sdk; extra == "all"
166
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
167
- Requires-Dist: docker; extra == "all"
168
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
169
- Requires-Dist: awscli>=1.27.10; extra == "all"
170
- Requires-Dist: botocore>=1.29.10; extra == "all"
171
- Requires-Dist: boto3>=1.26.1; extra == "all"
172
- Requires-Dist: colorama<0.4.5; extra == "all"
173
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
174
- Requires-Dist: oci; extra == "all"
175
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
176
- Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
177
- Requires-Dist: websockets; extra == "all"
178
- Requires-Dist: python-dateutil; extra == "all"
179
- Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
180
- Requires-Dist: websockets; extra == "all"
181
- Requires-Dist: python-dateutil; extra == "all"
182
- Requires-Dist: grpcio>=1.63.0; extra == "all"
183
- Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
184
- Requires-Dist: runpod>=1.6.1; extra == "all"
185
- Requires-Dist: cudo-compute>=0.1.10; extra == "all"
186
162
  Requires-Dist: pydo>=0.3.0; extra == "all"
187
- Requires-Dist: azure-core>=1.24.0; extra == "all"
188
- Requires-Dist: azure-common; extra == "all"
189
163
  Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
190
- Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
191
- Requires-Dist: nebius>=0.2.47; extra == "all"
192
- Requires-Dist: awscli>=1.27.10; extra == "all"
193
- Requires-Dist: botocore>=1.29.10; extra == "all"
194
- Requires-Dist: boto3>=1.26.1; extra == "all"
195
- Requires-Dist: colorama<0.4.5; extra == "all"
196
- Requires-Dist: casbin; extra == "all"
164
+ Requires-Dist: azure-core>=1.24.0; extra == "all"
197
165
  Requires-Dist: sqlalchemy_adapter; extra == "all"
198
166
  Requires-Dist: passlib; extra == "all"
199
- Requires-Dist: pyjwt; extra == "all"
167
+ Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
200
168
  Requires-Dist: aiohttp; extra == "all"
169
+ Requires-Dist: aiosqlite; extra == "all"
170
+ Requires-Dist: azure-cli>=2.65.0; extra == "all"
171
+ Requires-Dist: google-cloud-storage; extra == "all"
172
+ Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
173
+ Requires-Dist: python-dateutil; extra == "all"
174
+ Requires-Dist: colorama<0.4.5; extra == "all"
175
+ Requires-Dist: cudo-compute>=0.1.10; extra == "all"
176
+ Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
177
+ Requires-Dist: msgraph-sdk; extra == "all"
178
+ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
201
179
  Requires-Dist: anyio; extra == "all"
202
180
  Requires-Dist: grpcio>=1.63.0; extra == "all"
203
- Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
204
- Requires-Dist: aiosqlite; extra == "all"
181
+ Requires-Dist: docker; extra == "all"
182
+ Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
183
+ Requires-Dist: pyjwt; extra == "all"
184
+ Requires-Dist: azure-common; extra == "all"
185
+ Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
186
+ Requires-Dist: oci; extra == "all"
187
+ Requires-Dist: boto3>=1.26.1; extra == "all"
188
+ Requires-Dist: awscli>=1.27.10; extra == "all"
189
+ Requires-Dist: msrestazure; extra == "all"
205
190
  Dynamic: author
206
191
  Dynamic: classifier
207
192
  Dynamic: description
@@ -1,14 +1,14 @@
1
- sky/__init__.py,sha256=oeTQi0Ilz2yS1pP2h5G_WNawCC8ThUB2Na8s9z8U_ng,6615
1
+ sky/__init__.py,sha256=4pHilDHT8qiOmfPJybiNTCVGBUXTDPDE9LZiYewjrqM,6615
2
2
  sky/admin_policy.py,sha256=XdcJnYqmude-LGGop-8U-FeiJcqtfYsYtIy4rmoCJnM,9799
3
3
  sky/authentication.py,sha256=00EHVELI7nuW7JQ_74t1RKIc7iohKnwdvlw6h2gXRmg,25487
4
4
  sky/check.py,sha256=Z7D6txaOAEL7fyEQ8q-Zxk1aWaHpEcl412Rj2mThbQ0,31025
5
5
  sky/cli.py,sha256=VXIZryeTtJPYpPTBKymVPmuOCyh8knfWrq-qnkr6R-4,178
6
6
  sky/cloud_stores.py,sha256=Ln5GBpel-sEs7rVx7bBrMkfLwA_bctI05Rox2uoz7Lo,26388
7
- sky/core.py,sha256=YBSnlAuWhjGs08HhX95A5y4-LkuR7tNC-cmXQPPT4OU,57371
7
+ sky/core.py,sha256=qL76-P4aE_BGsZDmnBIwMw_MoPtFVLsJ0cQP7OSyCt8,57534
8
8
  sky/dag.py,sha256=0ZpAEDXuIFo1SP7YJpF9vXiFxpRwqP8od-UXMg95td8,3929
9
9
  sky/exceptions.py,sha256=sZ0rYuPZKKv4brkfPPJacWo2dY48FfqevwFT1bFzORU,20328
10
10
  sky/execution.py,sha256=v1JNAjjQC1iOXjG8eba-zrMDVGrjZjx7Ys4f4ExwQp0,34674
11
- sky/global_user_state.py,sha256=GqOXBsL4e5Td9Xp3DqKNg-nPYIujYla0ErRmRqyEP5Y,88193
11
+ sky/global_user_state.py,sha256=BWHYU1qV7USGaTkWg4GyoWVt_sXq7qZItMA1DSmfVrU,89625
12
12
  sky/models.py,sha256=C5vuymhZtQHxtzE7sM63VV-dKJ8Zo7U7cQWCZKb9q10,3196
13
13
  sky/optimizer.py,sha256=iR57bL_8BeG6bh1sH3J6n6i65EBFjmyftezYM4nnDZA,64150
14
14
  sky/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -28,15 +28,15 @@ 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
30
  sky/adaptors/kubernetes.py,sha256=KMXPv_hFh55mCTX1h1mUxk7EnwdHpLPPrEsGHlpS2FA,10352
31
- sky/adaptors/nebius.py,sha256=DPEK5hJ1bRMRWBXMhncF0d3Z6oFk2MgkST4NrQ7AJEc,9986
31
+ sky/adaptors/nebius.py,sha256=i2FcELjztleXEjs554dbtiJ9hO_0tsF1N_GrlWLXE0Y,10722
32
32
  sky/adaptors/oci.py,sha256=xJt6J9xBSFIENa6FwEt1V1sZE8puAZ_vPEoGlyQACPs,2839
33
33
  sky/adaptors/runpod.py,sha256=4Nt_BfZhJAKQNA3wO8cxvvNI8x4NsDGHu_4EhRDlGYQ,225
34
34
  sky/adaptors/vast.py,sha256=tpvmHi7IkQNzbbHVkeo04kUSajoEpSzXr2XgeO_I1LU,695
35
35
  sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
36
36
  sky/backends/__init__.py,sha256=tpa9gAygQopsiBUUuy3wVmr4E05FoPTFHIWqEo4i-u0,627
37
37
  sky/backends/backend.py,sha256=6ltCouZhaXJqv2Zh9nP_YCdHf10_oIRNzAA-XDiMmI8,7969
38
- sky/backends/backend_utils.py,sha256=3jZMSnhNwbAAOXNSi5G3i8ReLpB1Gl9oik_s4mPo2u4,161349
39
- sky/backends/cloud_vm_ray_backend.py,sha256=rkTfoQXCHled47MDDEsyp_2BcXgfTSz-1ISeqwfeNdI,276837
38
+ sky/backends/backend_utils.py,sha256=NopK9HEgsdQnm_fWFmCtKtKc7fIN6JKoRfhGuUIFipI,161574
39
+ sky/backends/cloud_vm_ray_backend.py,sha256=jzvNeOAFD6JLqchR-aI-L8T6vljUmMf2LYZPIRJKG2M,278941
40
40
  sky/backends/docker_utils.py,sha256=_EhM6NStZDAwcegppQqExaB5iuSn1qL4xFFUqXAz2Uk,8392
41
41
  sky/backends/local_docker_backend.py,sha256=r84uhXCk7NK9hGW840KPKnrADd7mCerMwncxOzckHg4,17126
42
42
  sky/backends/wheel_utils.py,sha256=DE71Muq5qLRhGpCVg1Rb6YOI7S_BzT8Hak27Pz8L4yw,12486
@@ -76,13 +76,13 @@ sky/catalog/data_fetchers/fetch_nebius.py,sha256=PeiVTWsaw0P01cfq2xDcS1tcIhLIe4O
76
76
  sky/catalog/data_fetchers/fetch_vast.py,sha256=xoVDSsQVgMLzyibCFN7yDgyH1Y96gk5G53to1ZAGRyg,5017
77
77
  sky/catalog/data_fetchers/fetch_vsphere.py,sha256=Yf7tKzwJsQ_4f64IT1EAP108C1D3Rg35RUIwp7UX8KI,21438
78
78
  sky/client/__init__.py,sha256=pz6xvVSd9X-gwqbsDL0E9QOojYqM0KAD0j-NCyCIF1k,38
79
- sky/client/common.py,sha256=WXI-tjkEh6gn1IcPFyz1GgHhmXo-auOwXBuYdBeWoO8,16836
79
+ sky/client/common.py,sha256=aYkFeiWgiyJTXm25z_o3ISrvMA-SthbggmKG6qPtwj8,16740
80
80
  sky/client/oauth.py,sha256=sNJ_DMsSTcxluj5FeNQ2IafZJLImRFmCAZ79bXeABn4,2871
81
- sky/client/sdk.py,sha256=0KKDClBVjXpjWiJY0bC3ivveW9OYxQE7tfzL_Q71MVI,104630
82
- sky/client/sdk_async.py,sha256=CSqkdmt0--5kNbtiJveqweHgI_YUS28mFXLox-TzYkc,30590
81
+ sky/client/sdk.py,sha256=_-N62t5FsOU6tMm_Gl7xLHdfBALnKHNOhxhg3-nmEpA,104857
82
+ sky/client/sdk_async.py,sha256=nZK9s6BKUsJ6F04vzKI4-SHFF1-3hn5V6ByS9MQ1LmY,30674
83
83
  sky/client/service_account_auth.py,sha256=5jXk0G6ufuW-SHCO7BEHQeTO0_2a8KfFmA63auXFRj4,1529
84
84
  sky/client/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
- sky/client/cli/command.py,sha256=rEq08ctItuzXhN03raGiXEmKL_Xs-Yaq7hUDHRMi2cY,247890
85
+ sky/client/cli/command.py,sha256=kGBJ2Z818zyDcBvQqreCBYhH-tc3pLpl5wnGax_N-Eg,248353
86
86
  sky/client/cli/deprecation_utils.py,sha256=H_d5UyF2CekEoThduAzt5cihBO8hwKYMu0-Wqfbjv5E,3370
87
87
  sky/client/cli/flags.py,sha256=lLXHooU4HEslbHJuGAiCrKYkJZx99hAKaJbstw7s1bc,12136
88
88
  sky/client/cli/git.py,sha256=dqSaJI1Ndv6RfKJa6HT6ednXr0j_pVlwSdh3XiQzB60,22018
@@ -112,17 +112,19 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
112
112
  sky/clouds/utils/gcp_utils.py,sha256=09MF4Vx0EW7S-GXGpyxpl2aQlHrqeu9ioV0nyionAyk,9890
113
113
  sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
114
114
  sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
115
- sky/dashboard/out/404.html,sha256=f8GtnEvwcb50Wsrh_xZc8O5RnM9jB2LGUtyePTEQ7fo,1423
116
- sky/dashboard/out/clusters.html,sha256=hwD26WblBDLBkjDYOZdJs3ILQpfeEnSIStRBcogeD9c,1418
117
- sky/dashboard/out/config.html,sha256=EfNMrtBDxvLF1NLR7XLs2On7mE_as03zMvNCq0QgowA,1414
115
+ sky/dashboard/out/404.html,sha256=FnxnqoSEmbqiFgaaVce0bRJ2D0ULBduYmW5_-oySZSM,1423
116
+ sky/dashboard/out/clusters.html,sha256=l7XzeBYfGNQHD5RF8N776ux8uinz-I4tCjJFbKiJMqE,1418
117
+ sky/dashboard/out/config.html,sha256=ycNuiTWUssvdSqmZN8EIDVDT_EnxbvM0pDo1vgmllTM,1414
118
118
  sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
119
- sky/dashboard/out/index.html,sha256=39BvoAIUYKa9bP7oZThBa0-w9tgl7wH28o54u6mEKD4,1407
120
- sky/dashboard/out/infra.html,sha256=Jx0tzQjUSYzaOeNSVlVxumgKLTrgpVLI_H9wLQq8NE8,1412
121
- sky/dashboard/out/jobs.html,sha256=NNiyUwCnWMvkwN7sYpkICsoAHwxY68T-4D0FHesbMIo,1410
119
+ sky/dashboard/out/index.html,sha256=47BNtr_4I9bwelmGluz-eJpPLn27tFT9B2H_d35MNoM,1407
120
+ sky/dashboard/out/infra.html,sha256=MY3OZ0NOY1NfRkzkaEJ8M5rhwhX4lxYYBkURmJqDfPk,1412
121
+ sky/dashboard/out/jobs.html,sha256=gC6CJGGSiEOTZUR1hdViORhyoXwQSCfwDXiJhpB7iqY,1410
122
122
  sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
123
- sky/dashboard/out/users.html,sha256=KGl3YSs9MRdZmK1zuL_ywa0a0OWo-yVITois-HUv1OM,1412
124
- sky/dashboard/out/volumes.html,sha256=Afht187Z1BUl7R3S9D3lr5xtx5ceeNyBBIlK_eqrJWc,1416
125
- sky/dashboard/out/workspaces.html,sha256=leCLzEmqjcJtP5Z6BeU4_pLQB0n9S8EyBsjmONd_k20,1422
123
+ sky/dashboard/out/users.html,sha256=8ytHopillL8hyAkFwfz-jysS0LwKhgoqOn4r72NQwfQ,1412
124
+ sky/dashboard/out/volumes.html,sha256=nXnd5_vsRtd7-alq3NLx7evkpmcM6JWSZW2iQmil1nU,1416
125
+ sky/dashboard/out/workspaces.html,sha256=VxKRYG-OFZAS1QbiSwHQKEBE7mxwg5dTGmujS9mPd9o,1422
126
+ sky/dashboard/out/_next/static/EqPZ0ygxa__3XPBVJ9dpy/_buildManifest.js,sha256=osxUordT3Fb32OsAF270nSx4GMgfsKF6Vc8OBBxtPgk,2428
127
+ sky/dashboard/out/_next/static/EqPZ0ygxa__3XPBVJ9dpy/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
126
128
  sky/dashboard/out/_next/static/chunks/1121-8afcf719ea87debc.js,sha256=fLXxFyYpxIIH-GAL9X9Ew3rc2f6zqOZqg6TjrapDZUM,8554
127
129
  sky/dashboard/out/_next/static/chunks/1141-943efc7aff0f0c06.js,sha256=tUOoU0nIEShZeD5pBiOWrl8-czHc6PpnxxJilnDplHM,17330
128
130
  sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
@@ -177,16 +179,14 @@ sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-07349868f7905d37.j
177
179
  sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
178
180
  sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-de06e613e20bc977.js,sha256=8d4XLtF8E3ahNnsbdNUQkJVbM1b9sIG9wRaoRjRwMhE,1495
179
181
  sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
180
- sky/dashboard/out/_next/static/hYJYFIxp_ZFONR4wTIJqZ/_buildManifest.js,sha256=osxUordT3Fb32OsAF270nSx4GMgfsKF6Vc8OBBxtPgk,2428
181
- sky/dashboard/out/_next/static/hYJYFIxp_ZFONR4wTIJqZ/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
182
- sky/dashboard/out/clusters/[cluster].html,sha256=C-sDkus65S6OKBWSA6Y3d_V64Ry0BYa225UFzNt0gUg,2936
183
- sky/dashboard/out/clusters/[cluster]/[job].html,sha256=eshrevNSCeSARmGwnCRcOIJyAtDpaMjw4LdAM6C1Vl0,2073
184
- sky/dashboard/out/infra/[context].html,sha256=dluLP0PaVP_chPIL_jtNNhhL1JGnoVrq3YvBqwPRx2g,1436
185
- sky/dashboard/out/jobs/[job].html,sha256=PiDF5RNlEA9Ay3pW8hbfkhjPTQNw6GbOebGTslTyegI,2304
186
- sky/dashboard/out/jobs/pools/[pool].html,sha256=Wf23jytqQTwOSH921a0iceJUg7Xx_hI0uPXG0et5Khs,2142
182
+ sky/dashboard/out/clusters/[cluster].html,sha256=VfYsDz-X4_Pi2s1kPUIgKsUqDmY_pcCz59Ip_aVh1LU,2936
183
+ sky/dashboard/out/clusters/[cluster]/[job].html,sha256=MvYa1zRSR80oyIifNFSsFdoI6_L98RZovnSIhkJTRaM,2073
184
+ sky/dashboard/out/infra/[context].html,sha256=CN_Fs9lgbXyGhgtLt6WjvroLKJt60xZoX2qMg5Z8yB0,1436
185
+ sky/dashboard/out/jobs/[job].html,sha256=AuXAf8S94w-TGJ6_y3eTJKNKQAwo_GKgsV09LeZHfsc,2304
186
+ sky/dashboard/out/jobs/pools/[pool].html,sha256=uV0uJ9VsgOzdtzIufxtgotbt1g26ARwULhuhzI2AMpg,2142
187
187
  sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
188
- sky/dashboard/out/workspace/new.html,sha256=YtNMDqXoNotLbHEJR9K1KVFoetCflmAcfH8rJ7DXAbQ,1428
189
- sky/dashboard/out/workspaces/[name].html,sha256=86C_9HsUJoYZdbdFmFenzMed9IL6L1ZidTulU4800LI,2759
188
+ sky/dashboard/out/workspace/new.html,sha256=rbnqoGCI78CqL4ZNc-LD5q3FtzM1Czq99Ddclj3txPs,1428
189
+ sky/dashboard/out/workspaces/[name].html,sha256=bzVQMgb4FrrEKJeodePE9UGy0y77d5pKM_wIopBWDUE,2759
190
190
  sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
191
191
  sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
192
192
  sky/data/data_utils.py,sha256=AjEA_JRjo9NBMlv-Lq5iV4lBED_YZ1VqBR9pG6fGVWE,35179
@@ -216,7 +216,7 @@ sky/metrics/utils.py,sha256=Cww3yNG4HyW4DEdLOFUayFgMZ16t2JFSvvhuTTV7Vio,7654
216
216
  sky/provision/__init__.py,sha256=yEe5zxKjy8M4D6mXHNGx_35h4IQ83t8HtZjwFFaamNw,7911
217
217
  sky/provision/common.py,sha256=LdjM9SL9NDtsARom12tVv_WoUNL3PTlU5RoLfeWGGgM,10807
218
218
  sky/provision/constants.py,sha256=oc_XDUkcoLQ_lwDy5yMeMSWviKS0j0s1c0pjlvpNeWY,800
219
- sky/provision/docker_utils.py,sha256=qkqA1jpmheejEUGiwZKxwNyGAUopYvj6CNgcfw4sVJI,21437
219
+ sky/provision/docker_utils.py,sha256=DpyBNuGv5BrU3Z3LDy6BZbrur4wPFzYJAtQuUK_cEsM,21439
220
220
  sky/provision/instance_setup.py,sha256=YjANEJoPSamKLav_BjoGiTOkFlGKoR_F1DlGuUFe-U0,26141
221
221
  sky/provision/logging.py,sha256=_sx_TH6nLt0FF3myS5pEZbiMhXyl4s1XwMidu_TTBUw,2091
222
222
  sky/provision/metadata_utils.py,sha256=LrxeV4wD2QPzNdXV_npj8q-pr35FatxBBjF_jSbpOT0,4013
@@ -261,7 +261,7 @@ sky/provision/kubernetes/constants.py,sha256=vZJQsAVjAgwsOskB48tIFSXtNw7IFnJOQE_
261
261
  sky/provision/kubernetes/instance.py,sha256=PFqJg7-NqKfXv6R6zLmxipMAMwPD608EZHxPB2ClNvU,69732
262
262
  sky/provision/kubernetes/network.py,sha256=Dgj8u7IQBHKHt-mSDhYzue1wfDk96FR_8fO89TwuZ2E,12846
263
263
  sky/provision/kubernetes/network_utils.py,sha256=XYgZ6BEO-YB2o3Y_eXgr2Czk9wxGdWSs0mEJnpLU77Q,12256
264
- sky/provision/kubernetes/utils.py,sha256=Su0lDLNMjAR8_wuT9LUkD2Wv5uOQfXrVoEbvkVQ2Gs4,158713
264
+ sky/provision/kubernetes/utils.py,sha256=6WVW-yQYaOJ80YZOyHNlWVA-jKITKFfzVLjELRHibCU,159371
265
265
  sky/provision/kubernetes/volume.py,sha256=mChbYJw02vrUbBWw9a2mKHWlSfCBjWS4AeWs5_6MPSw,8142
266
266
  sky/provision/kubernetes/manifests/fusermount-server-daemonset.yaml,sha256=S87GNAbDqgTrLuxF-afPAqQ0V-i41El4s_9KBZMuaag,1331
267
267
  sky/provision/lambda_cloud/__init__.py,sha256=6EEvSgtUeEiup9ivIFevHmgv0GqleroO2X0K7TRa2nE,612
@@ -354,16 +354,16 @@ sky/serve/server/core.py,sha256=QEdBUE0clX8ZSQEO_mb5Gt3ykeWBdVzqtmiRcBjH7UY,1032
354
354
  sky/serve/server/impl.py,sha256=mqK3FZR8Nutu9p3WPNJZaHoLetcF1UghKB21aZ5J5_M,42789
355
355
  sky/serve/server/server.py,sha256=zzHQdsFWdSzoAIgPw-SQsxem559psu31X6BG0sSWSxw,4464
356
356
  sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
357
- sky/server/common.py,sha256=WCKQT3tHi6D5-w8IaMEXHeD6iIITeiXVK4Du9640V1Y,39317
357
+ sky/server/common.py,sha256=0sXjJqrAg1G1oZKg3492RzYuBjzCgXp8JXqyRIf3ysk,39410
358
358
  sky/server/config.py,sha256=XWf5Kw4am6vMO5wcyWevbQAFH-dmKb7AMEgDzD083-M,8538
359
359
  sky/server/constants.py,sha256=yjX8t73w6gj3_SDSP4vBFdNdiOqq7dnlXT2pw3yo0jM,2321
360
360
  sky/server/daemons.py,sha256=Og2F560XO4n70TPxxvrbkNUujftX4V4GxRA0E6-nSrw,9206
361
- sky/server/metrics.py,sha256=6H6n6dq_C5HMaU97mJlRUB9bqOEA_k205PO15wE3AWk,3648
361
+ sky/server/metrics.py,sha256=G9HMhioPmx9ppbyrPAk-pyVe5yUw6LBuXD5aRqqsEfM,6140
362
362
  sky/server/rest.py,sha256=6Qcn6fjypP3j9UHdKRgvt2-PU1LKz2VU2aVQEA1D6EI,14354
363
- sky/server/server.py,sha256=VMxNNCz1DXMLnacvQX25lb8fqF8x1kUtAJQauP7hPDA,79176
363
+ sky/server/server.py,sha256=v86-47mJtk_e25j3f9PkW-Lod3FdjDCM7426LWxe2G0,80390
364
364
  sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
365
365
  sky/server/stream_utils.py,sha256=Ym9yIP-JhA58YUFfHL8gM0Xwnho1AYO9WX_UJ_gOIdM,9274
366
- sky/server/uvicorn.py,sha256=4D4uoz5Hv-IpVGkhOF2FozBJwCE13fYWwHCNUc_N17s,10665
366
+ sky/server/uvicorn.py,sha256=r3TWSI8647Df67aTcX1PT1JJPyr3sWsei_vWBklVx2A,11022
367
367
  sky/server/versions.py,sha256=3atZzUa7y1XeKNcrfVxKWAo_5ZyCOnbY7DKpIqed7Do,10011
368
368
  sky/server/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
369
  sky/server/auth/authn.py,sha256=zvabLsEAf9Ql6AbXJuWZ54uaiOr1mwFGGvQn84v66H4,2037
@@ -372,11 +372,11 @@ sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
372
372
  sky/server/html/token_page.html,sha256=eUndS5u1foL9vaWGPRTLMt7lCzD1g0wYJ2v_EeeFzlc,7046
373
373
  sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
374
374
  sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
375
- sky/server/requests/executor.py,sha256=dI52Z6_5d8oG4qTT9_ThoHljYPeKcyfxwufcphDYdsg,27515
376
- sky/server/requests/payloads.py,sha256=1pXQmi_ZAsjvNAPkhx6E_QLyfOWV4Bi0QSu4H0ZhJ2A,26337
375
+ sky/server/requests/executor.py,sha256=5yrttKUBi2wReUlizGIX5XYofVNp4TUfhGyxDWuTioI,27735
376
+ sky/server/requests/payloads.py,sha256=_d_jLV7c4crSe7mydCKD3uXtfXR3f25aoQtGKzUnBZY,26375
377
377
  sky/server/requests/preconditions.py,sha256=S86OYSQHvdO2J9AkK6ZSxu_IlutfEu2OttR9EXbEEk0,7231
378
378
  sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
379
- sky/server/requests/requests.py,sha256=16au7iYn1FfbT5cThzQb6gy7xS1SPW1jBJeOwptNVw4,27552
379
+ sky/server/requests/requests.py,sha256=42K8OUX019iVjrolePzp8aHDBOinUAAPDUEsVaEAlsg,27780
380
380
  sky/server/requests/queues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
381
381
  sky/server/requests/queues/local_queue.py,sha256=X6VkBiUmgd_kfqIK1hCtMWG1b8GiZbY70TBiBR6c6GY,416
382
382
  sky/server/requests/queues/mp_queue.py,sha256=jDqP4Jd28U3ibSFyMR1DF9I2OWZrPZqFJrG5S6RFpyw,3403
@@ -385,14 +385,14 @@ sky/server/requests/serializers/decoders.py,sha256=zE2BeTYVcBAK6a_V9YmMPRBQ9xos5
385
385
  sky/server/requests/serializers/encoders.py,sha256=EsKpscRTjxLRgDDw4DgJNjmRu1q-5bvj6zBe-tebaLc,7584
386
386
  sky/setup_files/MANIFEST.in,sha256=4gbgHHwSdP6BbMJv5XOt-2K6wUVWF_T9CGsdESvh918,776
387
387
  sky/setup_files/alembic.ini,sha256=854_UKvCaFmZ8vI16tSHbGgP9IMFQ42Td6c9Zmn2Oxs,5079
388
- sky/setup_files/dependencies.py,sha256=h6jQwnknsLvUCAfv4Ro8oq0eOPtDuMXrAOtJKscKUdk,7436
389
- sky/setup_files/setup.py,sha256=GTXvAi65S4_TSLhQ1GzkmaWf_yzciHiaxMbZumcTtKU,7522
388
+ sky/setup_files/dependencies.py,sha256=rNs8UXu6gbWiOWh9WC3_fZu5MIaiep6eRH65GbqAb34,7963
389
+ sky/setup_files/setup.py,sha256=MjI1R652CYCnV4YscgndphTTISa-OzQ53lv1umxMqw0,7622
390
390
  sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
391
391
  sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
392
392
  sky/skylet/attempt_skylet.py,sha256=GZ6ITjjA0m-da3IxXXfoHR6n4pjp3X3TOXUqVvSrV0k,2136
393
393
  sky/skylet/autostop_lib.py,sha256=2eab980ckQ5dA2DFAJlI5bAJ6EI7YI-JSlzFoTA9XwU,9698
394
394
  sky/skylet/configs.py,sha256=nNBnpuzoU696FbC3Nv0qKVSDuTw4GAbr7eCcg0_Sldo,2135
395
- sky/skylet/constants.py,sha256=uLlryUYPUcWQIHYTzm_fX9fOAE51JkBXeUE9RNO-ieI,24028
395
+ sky/skylet/constants.py,sha256=5rZEEB6fEjnp5py1Gxc7G8APBE4KKtICd1TlUJGahy0,24152
396
396
  sky/skylet/events.py,sha256=vOGqqgZM0aJAjSg3YluIO7mnbbxg9VF-iBVPuQHuBac,13801
397
397
  sky/skylet/job_lib.py,sha256=cUud2sVcnHcZbqzHYGpiBy7EKSIphX8SqWg5Rsh-Su4,49533
398
398
  sky/skylet/log_lib.py,sha256=-kfeSNb7gR7Z-G7ADHh9Na4_QO-T0o2WzYYhcrrHSIE,23349
@@ -485,12 +485,13 @@ sky/utils/lock_events.py,sha256=qX4-Nlzm4S9bTD4e2eg2Vgn4AOlTjy7rhzLS_0B1IdA,2827
485
485
  sky/utils/locks.py,sha256=L51SbGY48b1gQQp8qk3HBentcENozYx1u68KuNL-_Jo,10729
486
486
  sky/utils/log_utils.py,sha256=RB5n58CAWmVepd_RAf-mjL2EViBFbtkPtSB5jJT6pLY,29684
487
487
  sky/utils/message_utils.py,sha256=zi2Z7PEX6Xq_zvho-aEZe_J7UvpKOLdVDdGAcipRQPU,2662
488
+ sky/utils/perf_utils.py,sha256=HxmTmVQc5DSfqJwISPxdVLWmUxNZHbibJg1kKVI-1Cg,700
488
489
  sky/utils/registry.py,sha256=I08nS0rvCF-xR5GEZoHEVgN1jcOeglz77h7xPpBCIjU,4179
489
490
  sky/utils/resource_checker.py,sha256=0rwr7yLVkYO3Qq5FZmniyPp-p66tIXmSoK5t0ZgIfso,10498
490
491
  sky/utils/resources_utils.py,sha256=3wnzmSIldFS5NmHTx6r2viS8zaP1q20noQolgQqucUU,16722
491
492
  sky/utils/rich_console_utils.py,sha256=wPvAlshaFHuMZSjiDnaK3OSBppZLBjAn-lj7AvxNBQk,553
492
493
  sky/utils/rich_utils.py,sha256=Q-N5bZGfvqciU5cuQacInoNpldZcaMKCdBX2368KIDA,19971
493
- sky/utils/schemas.py,sha256=qOKtbDkmuekn2lGM4p7G3Dqb0nuB-9WwY8Y5d3Z2dJk,57216
494
+ sky/utils/schemas.py,sha256=lkz6NHdNSLZ16HL3jJ5en2vzMWzixGxXQimBv6SK8cg,57410
494
495
  sky/utils/serialize_utils.py,sha256=nn2x-8cTZeiVr5cgaBpLOGGpSFtms62QAJFyxs_bodI,630
495
496
  sky/utils/status_lib.py,sha256=QGkd6COD1GX1h30Mk9RMUdyeUOMJs5971GkxTcFgdsU,1705
496
497
  sky/utils/subprocess_utils.py,sha256=tOpFY_1ml7JkVGAN1o473lcKPklGR95qBCW61eu8kEo,15773
@@ -505,7 +506,7 @@ sky/utils/aws/get_default_security_group.py,sha256=LPzz5133ZUMbzDD3iqqACL9Pdlgqi
505
506
  sky/utils/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
506
507
  sky/utils/cli_utils/status_utils.py,sha256=KYjicOiPs9n8C9VsA-JiDbhh5onHj2HwtLmIaicGjbc,16122
507
508
  sky/utils/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
508
- sky/utils/db/db_utils.py,sha256=4q0guiWuDkl2Pi4ORecOrf8X-WCMS0QHkwtW7I4dClc,10354
509
+ sky/utils/db/db_utils.py,sha256=JKHYHNqAwVSqpFAgJT1ESJl5AIWA3Q1kRLYYXGuP3-E,12968
509
510
  sky/utils/db/migration_utils.py,sha256=4k3U3s5lUY9UifmLft4rL1ZrYhRKsToA1RcnPoyCfkE,5067
510
511
  sky/utils/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
511
512
  sky/utils/kubernetes/cleanup-tunnel.sh,sha256=rXMXuMfyB9bzKjLvXdMCjimDVvdjGPMXuqeo2ZNx9OA,2244
@@ -536,9 +537,9 @@ sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
536
537
  sky/workspaces/core.py,sha256=AjwbbRwk0glzCnqICJk4sQzMoUcawixbXoQWKLB3-aQ,25372
537
538
  sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
538
539
  sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
539
- skypilot_nightly-1.0.0.dev20250829.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
540
- skypilot_nightly-1.0.0.dev20250829.dist-info/METADATA,sha256=OGsfbVSFrUAnhL7FLy5qdC2cN2CvgQXHHAuDDe7awOQ,20541
541
- skypilot_nightly-1.0.0.dev20250829.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
542
- skypilot_nightly-1.0.0.dev20250829.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
543
- skypilot_nightly-1.0.0.dev20250829.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
544
- skypilot_nightly-1.0.0.dev20250829.dist-info/RECORD,,
540
+ skypilot_nightly-1.0.0.dev20250901.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
541
+ skypilot_nightly-1.0.0.dev20250901.dist-info/METADATA,sha256=Z5_ATY3acn0m1bTAIWNm__5ZWYspQnlEYOdL2A7S9_g,19709
542
+ skypilot_nightly-1.0.0.dev20250901.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
543
+ skypilot_nightly-1.0.0.dev20250901.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
544
+ skypilot_nightly-1.0.0.dev20250901.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
545
+ skypilot_nightly-1.0.0.dev20250901.dist-info/RECORD,,