skypilot-nightly 1.0.0.dev20250829__py3-none-any.whl → 1.0.0.dev20250831__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.
- sky/__init__.py +2 -2
- sky/adaptors/nebius.py +24 -2
- sky/backends/backend_utils.py +39 -36
- sky/backends/cloud_vm_ray_backend.py +37 -0
- sky/client/cli/command.py +17 -6
- sky/client/common.py +5 -4
- sky/client/sdk.py +5 -0
- sky/client/sdk_async.py +8 -2
- sky/core.py +8 -3
- sky/dashboard/out/404.html +1 -1
- sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
- sky/dashboard/out/clusters/[cluster].html +1 -1
- sky/dashboard/out/clusters.html +1 -1
- sky/dashboard/out/config.html +1 -1
- sky/dashboard/out/index.html +1 -1
- sky/dashboard/out/infra/[context].html +1 -1
- sky/dashboard/out/infra.html +1 -1
- sky/dashboard/out/jobs/[job].html +1 -1
- sky/dashboard/out/jobs/pools/[pool].html +1 -1
- sky/dashboard/out/jobs.html +1 -1
- sky/dashboard/out/users.html +1 -1
- sky/dashboard/out/volumes.html +1 -1
- sky/dashboard/out/workspace/new.html +1 -1
- sky/dashboard/out/workspaces/[name].html +1 -1
- sky/dashboard/out/workspaces.html +1 -1
- sky/jobs/server/server.py +1 -2
- sky/provision/docker_utils.py +1 -1
- sky/provision/kubernetes/utils.py +39 -26
- sky/serve/server/server.py +1 -2
- sky/server/requests/executor.py +1 -1
- sky/server/requests/payloads.py +1 -0
- sky/server/requests/preconditions.py +2 -3
- sky/server/requests/requests.py +29 -110
- sky/server/server.py +4 -4
- sky/server/stream_utils.py +5 -7
- sky/setup_files/dependencies.py +24 -12
- sky/setup_files/setup.py +2 -0
- sky/utils/db/db_utils.py +0 -11
- sky/utils/schemas.py +6 -0
- {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/METADATA +35 -53
- {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/RECORD +47 -47
- /sky/dashboard/out/_next/static/{hYJYFIxp_ZFONR4wTIJqZ → FtHzmn6BMJ5PzqHhEY51g}/_buildManifest.js +0 -0
- /sky/dashboard/out/_next/static/{hYJYFIxp_ZFONR4wTIJqZ → FtHzmn6BMJ5PzqHhEY51g}/_ssgManifest.js +0 -0
- {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/top_level.txt +0 -0
sky/setup_files/setup.py
CHANGED
|
@@ -178,6 +178,8 @@ setuptools.setup(
|
|
|
178
178
|
'Programming Language :: Python :: 3.9',
|
|
179
179
|
'Programming Language :: Python :: 3.10',
|
|
180
180
|
'Programming Language :: Python :: 3.11',
|
|
181
|
+
'Programming Language :: Python :: 3.12',
|
|
182
|
+
'Programming Language :: Python :: 3.13',
|
|
181
183
|
'License :: OSI Approved :: Apache Software License',
|
|
182
184
|
'Operating System :: OS Independent',
|
|
183
185
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
sky/utils/db/db_utils.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
"""Utils for sky databases."""
|
|
2
|
-
import asyncio
|
|
3
2
|
import contextlib
|
|
4
3
|
import enum
|
|
5
4
|
import sqlite3
|
|
@@ -7,7 +6,6 @@ import threading
|
|
|
7
6
|
import typing
|
|
8
7
|
from typing import Any, Callable, Optional
|
|
9
8
|
|
|
10
|
-
import aiosqlite
|
|
11
9
|
import sqlalchemy
|
|
12
10
|
from sqlalchemy import exc as sqlalchemy_exc
|
|
13
11
|
|
|
@@ -285,12 +283,3 @@ class SQLiteConn(threading.local):
|
|
|
285
283
|
self.conn = sqlite3.connect(db_path, timeout=_DB_TIMEOUT_S)
|
|
286
284
|
self.cursor = self.conn.cursor()
|
|
287
285
|
create_table(self.cursor, self.conn)
|
|
288
|
-
self._async_conn: Optional[aiosqlite.Connection] = None
|
|
289
|
-
self._async_conn_lock = asyncio.Lock()
|
|
290
|
-
|
|
291
|
-
async def async_conn(self) -> aiosqlite.Connection:
|
|
292
|
-
if self._async_conn is None:
|
|
293
|
-
async with self._async_conn_lock:
|
|
294
|
-
if self._async_conn is None:
|
|
295
|
-
self._async_conn = await aiosqlite.connect(self.db_path)
|
|
296
|
-
return self._async_conn
|
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.
|
|
3
|
+
Version: 1.0.0.dev20250831
|
|
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
|
|
@@ -34,7 +38,7 @@ Requires-Dist: python-dotenv
|
|
|
34
38
|
Requires-Dist: rich
|
|
35
39
|
Requires-Dist: tabulate
|
|
36
40
|
Requires-Dist: typing_extensions
|
|
37
|
-
Requires-Dist: filelock>=3.
|
|
41
|
+
Requires-Dist: filelock>=3.6.0
|
|
38
42
|
Requires-Dist: packaging
|
|
39
43
|
Requires-Dist: psutil
|
|
40
44
|
Requires-Dist: pulp
|
|
@@ -59,7 +63,6 @@ Requires-Dist: gitpython
|
|
|
59
63
|
Requires-Dist: types-paramiko
|
|
60
64
|
Requires-Dist: alembic
|
|
61
65
|
Requires-Dist: aiohttp
|
|
62
|
-
Requires-Dist: aiosqlite
|
|
63
66
|
Requires-Dist: anyio
|
|
64
67
|
Provides-Extra: aws
|
|
65
68
|
Requires-Dist: awscli>=1.27.10; extra == "aws"
|
|
@@ -75,7 +78,6 @@ Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "azure"
|
|
|
75
78
|
Requires-Dist: azure-storage-blob>=12.23.1; extra == "azure"
|
|
76
79
|
Requires-Dist: msgraph-sdk; extra == "azure"
|
|
77
80
|
Requires-Dist: msrestazure; extra == "azure"
|
|
78
|
-
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "azure"
|
|
79
81
|
Provides-Extra: gcp
|
|
80
82
|
Requires-Dist: google-api-python-client>=2.69.0; extra == "gcp"
|
|
81
83
|
Requires-Dist: google-cloud-storage; extra == "gcp"
|
|
@@ -99,7 +101,6 @@ Provides-Extra: scp
|
|
|
99
101
|
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "scp"
|
|
100
102
|
Provides-Extra: oci
|
|
101
103
|
Requires-Dist: oci; extra == "oci"
|
|
102
|
-
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "oci"
|
|
103
104
|
Provides-Extra: kubernetes
|
|
104
105
|
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "kubernetes"
|
|
105
106
|
Requires-Dist: websockets; extra == "kubernetes"
|
|
@@ -141,67 +142,48 @@ Requires-Dist: aiohttp; extra == "server"
|
|
|
141
142
|
Requires-Dist: anyio; extra == "server"
|
|
142
143
|
Requires-Dist: grpcio>=1.63.0; extra == "server"
|
|
143
144
|
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "server"
|
|
144
|
-
Requires-Dist: aiosqlite; extra == "server"
|
|
145
145
|
Provides-Extra: all
|
|
146
|
-
Requires-Dist:
|
|
146
|
+
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
147
|
+
Requires-Dist: anyio; extra == "all"
|
|
148
|
+
Requires-Dist: casbin; extra == "all"
|
|
149
|
+
Requires-Dist: passlib; extra == "all"
|
|
150
|
+
Requires-Dist: google-cloud-storage; extra == "all"
|
|
147
151
|
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
152
|
+
Requires-Dist: aiohttp; extra == "all"
|
|
153
|
+
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
154
|
+
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
155
|
+
Requires-Dist: nebius>=0.2.47; extra == "all"
|
|
156
|
+
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
157
|
+
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
148
158
|
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
149
|
-
Requires-Dist:
|
|
159
|
+
Requires-Dist: docker; extra == "all"
|
|
160
|
+
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
161
|
+
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
162
|
+
Requires-Dist: python-dateutil; extra == "all"
|
|
163
|
+
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
164
|
+
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
150
165
|
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
166
|
+
Requires-Dist: msrestazure; extra == "all"
|
|
167
|
+
Requires-Dist: ibm-vpc; extra == "all"
|
|
168
|
+
Requires-Dist: runpod>=1.6.1; extra == "all"
|
|
169
|
+
Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
|
|
151
170
|
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
152
171
|
Requires-Dist: azure-identity>=1.19.0; extra == "all"
|
|
153
|
-
Requires-Dist:
|
|
172
|
+
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
154
173
|
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"
|
|
161
174
|
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
162
|
-
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
175
|
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
176
|
Requires-Dist: oci; extra == "all"
|
|
175
|
-
Requires-Dist:
|
|
176
|
-
Requires-Dist:
|
|
177
|
-
Requires-Dist:
|
|
178
|
-
Requires-Dist:
|
|
177
|
+
Requires-Dist: msgraph-sdk; extra == "all"
|
|
178
|
+
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
179
|
+
Requires-Dist: pyjwt; extra == "all"
|
|
180
|
+
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
179
181
|
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
182
|
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
|
-
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
187
|
-
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
188
183
|
Requires-Dist: azure-common; extra == "all"
|
|
189
|
-
Requires-Dist:
|
|
190
|
-
Requires-Dist:
|
|
191
|
-
Requires-Dist:
|
|
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"
|
|
197
|
-
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
198
|
-
Requires-Dist: passlib; extra == "all"
|
|
199
|
-
Requires-Dist: pyjwt; extra == "all"
|
|
200
|
-
Requires-Dist: aiohttp; extra == "all"
|
|
201
|
-
Requires-Dist: anyio; extra == "all"
|
|
202
|
-
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"
|
|
184
|
+
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
185
|
+
Requires-Dist: websockets; extra == "all"
|
|
186
|
+
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
205
187
|
Dynamic: author
|
|
206
188
|
Dynamic: classifier
|
|
207
189
|
Dynamic: description
|
{skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/RECORD
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
sky/__init__.py,sha256=
|
|
1
|
+
sky/__init__.py,sha256=VSoLDReyowcBFOZ0pybs77kcqcJ3MnJv-TWWJo4D0dw,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=
|
|
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
|
|
@@ -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=
|
|
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=
|
|
39
|
-
sky/backends/cloud_vm_ray_backend.py,sha256=
|
|
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=
|
|
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=
|
|
82
|
-
sky/client/sdk_async.py,sha256=
|
|
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=
|
|
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=
|
|
116
|
-
sky/dashboard/out/clusters.html,sha256=
|
|
117
|
-
sky/dashboard/out/config.html,sha256=
|
|
115
|
+
sky/dashboard/out/404.html,sha256=zP0DKKLB0NS0kFUPskuI3imwYsf44Fh9E2XzW1-HhGc,1423
|
|
116
|
+
sky/dashboard/out/clusters.html,sha256=0nE0TtlQd2_MmPRQGFqk1O3jdcHU84Z9jkCMVnl1oDM,1418
|
|
117
|
+
sky/dashboard/out/config.html,sha256=JKuMgkSGva_F6jhQRfsRqxeY6PPV6zAhJeuEJKItP8U,1414
|
|
118
118
|
sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
|
|
119
|
-
sky/dashboard/out/index.html,sha256=
|
|
120
|
-
sky/dashboard/out/infra.html,sha256=
|
|
121
|
-
sky/dashboard/out/jobs.html,sha256=
|
|
119
|
+
sky/dashboard/out/index.html,sha256=Vdr96Hi3yZ54CUUSYh1z-Z4Ap0WL5kPcUPm8jgH_Gnc,1407
|
|
120
|
+
sky/dashboard/out/infra.html,sha256=65LhKxl4Sp-dJJVjvE2Z4POjJWfdVCMXtRg5LMagLUo,1412
|
|
121
|
+
sky/dashboard/out/jobs.html,sha256=vNpEo2Kte6WFsUtgPc1lbZ3RzkUMRIG2u02JbkawGvk,1410
|
|
122
122
|
sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
|
|
123
|
-
sky/dashboard/out/users.html,sha256=
|
|
124
|
-
sky/dashboard/out/volumes.html,sha256=
|
|
125
|
-
sky/dashboard/out/workspaces.html,sha256=
|
|
123
|
+
sky/dashboard/out/users.html,sha256=yR2BWaFvYzhn1usuMsa0aZF28wAhbEwsoiOvh172DaY,1412
|
|
124
|
+
sky/dashboard/out/volumes.html,sha256=wEZvnaW0tKl2fqQtAbLudZ4sFAF9kjO1Up6nbRcqkX4,1416
|
|
125
|
+
sky/dashboard/out/workspaces.html,sha256=v90WLdIu5pI5dUk_wUa47fgqZt3-oF5W--fQri42pNU,1422
|
|
126
|
+
sky/dashboard/out/_next/static/FtHzmn6BMJ5PzqHhEY51g/_buildManifest.js,sha256=osxUordT3Fb32OsAF270nSx4GMgfsKF6Vc8OBBxtPgk,2428
|
|
127
|
+
sky/dashboard/out/_next/static/FtHzmn6BMJ5PzqHhEY51g/_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/
|
|
181
|
-
sky/dashboard/out/
|
|
182
|
-
sky/dashboard/out/
|
|
183
|
-
sky/dashboard/out/
|
|
184
|
-
sky/dashboard/out/
|
|
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=QHwpP1bvvrqeTLqW3lfPAXRZNDh0Ro6NYYfQk5OUzks,2936
|
|
183
|
+
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=ZsFM8jW6b4jl7yeCY-q-j83r8LBMTKqcHDnGLx63ul8,2073
|
|
184
|
+
sky/dashboard/out/infra/[context].html,sha256=DltpGQafEPvac38i-hF98t4y6BcQmwRdbz_0bI8eS10,1436
|
|
185
|
+
sky/dashboard/out/jobs/[job].html,sha256=KT7P6_2bv1vxySzG-psNwQdCfDv8fX9iMsDwrwKTjug,2304
|
|
186
|
+
sky/dashboard/out/jobs/pools/[pool].html,sha256=wvbpW0XkdWRjPlch2JlFLjZGhCU6bYkqMpjoEhHOkvU,2142
|
|
187
187
|
sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
|
|
188
|
-
sky/dashboard/out/workspace/new.html,sha256=
|
|
189
|
-
sky/dashboard/out/workspaces/[name].html,sha256=
|
|
188
|
+
sky/dashboard/out/workspace/new.html,sha256=AC3oQBJBM-kGg5JXqiVsPkXAgi3ckxC5JwrQ3x8n0T4,1428
|
|
189
|
+
sky/dashboard/out/workspaces/[name].html,sha256=aLfgEaUuE8xHBbyJIozXtl4vgM0QuHD4fSglyZ7EzXA,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
|
|
@@ -205,7 +205,7 @@ sky/jobs/client/sdk.py,sha256=ypSb8iRHWI7WEwai5ngBeShgBNTJf_0iehdGx-xyASA,16566
|
|
|
205
205
|
sky/jobs/client/sdk_async.py,sha256=qOI5TB5FDdX36R9rZ1lL9ouzQtJ6qnZxuK9uoKF86oU,4791
|
|
206
206
|
sky/jobs/server/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
207
207
|
sky/jobs/server/core.py,sha256=rtD5S82P6NnHk5XDpeSlbg-0lGShRrZWRutOn_rDVs0,40821
|
|
208
|
-
sky/jobs/server/server.py,sha256=
|
|
208
|
+
sky/jobs/server/server.py,sha256=v91KdT-ntLna46arzIgjckvNqebyREPw8z8U61t79qo,7195
|
|
209
209
|
sky/jobs/server/utils.py,sha256=7YRZNF8BGTQwWRiY7P40n4hQpCCOkp9gBiapd5rVFaI,3517
|
|
210
210
|
sky/logs/__init__.py,sha256=zW4gAEvWDz5S53FlLp3krAuKrmTSJ0e3kZDnhxSbW4E,722
|
|
211
211
|
sky/logs/agent.py,sha256=qtH56xbnKYLPrepSIX63or5YBLaAEMh8atTGl77BUck,2767
|
|
@@ -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=
|
|
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=
|
|
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
|
|
@@ -352,7 +352,7 @@ sky/serve/client/sdk_async.py,sha256=idvbLb6q_NBo79OnXE-3SF-bwYFMPzDg_khiNqOLd3o
|
|
|
352
352
|
sky/serve/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
353
|
sky/serve/server/core.py,sha256=QEdBUE0clX8ZSQEO_mb5Gt3ykeWBdVzqtmiRcBjH7UY,10321
|
|
354
354
|
sky/serve/server/impl.py,sha256=mqK3FZR8Nutu9p3WPNJZaHoLetcF1UghKB21aZ5J5_M,42789
|
|
355
|
-
sky/serve/server/server.py,sha256=
|
|
355
|
+
sky/serve/server/server.py,sha256=A9K37a0nQgZeN3eKWv62Oh2C5TSAReTZ9pHmztqlI-c,4396
|
|
356
356
|
sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
|
|
357
357
|
sky/server/common.py,sha256=WCKQT3tHi6D5-w8IaMEXHeD6iIITeiXVK4Du9640V1Y,39317
|
|
358
358
|
sky/server/config.py,sha256=XWf5Kw4am6vMO5wcyWevbQAFH-dmKb7AMEgDzD083-M,8538
|
|
@@ -360,9 +360,9 @@ sky/server/constants.py,sha256=yjX8t73w6gj3_SDSP4vBFdNdiOqq7dnlXT2pw3yo0jM,2321
|
|
|
360
360
|
sky/server/daemons.py,sha256=Og2F560XO4n70TPxxvrbkNUujftX4V4GxRA0E6-nSrw,9206
|
|
361
361
|
sky/server/metrics.py,sha256=6H6n6dq_C5HMaU97mJlRUB9bqOEA_k205PO15wE3AWk,3648
|
|
362
362
|
sky/server/rest.py,sha256=6Qcn6fjypP3j9UHdKRgvt2-PU1LKz2VU2aVQEA1D6EI,14354
|
|
363
|
-
sky/server/server.py,sha256=
|
|
363
|
+
sky/server/server.py,sha256=nwHagVG3bS2Nr4_uepkl7DxulEtuDzYYIyHmwiBWLto,79134
|
|
364
364
|
sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
|
|
365
|
-
sky/server/stream_utils.py,sha256=
|
|
365
|
+
sky/server/stream_utils.py,sha256=RS4RuMxQqTGqp3uxzZVtmFWzos4d49P7hMX_VklzEVU,9189
|
|
366
366
|
sky/server/uvicorn.py,sha256=4D4uoz5Hv-IpVGkhOF2FozBJwCE13fYWwHCNUc_N17s,10665
|
|
367
367
|
sky/server/versions.py,sha256=3atZzUa7y1XeKNcrfVxKWAo_5ZyCOnbY7DKpIqed7Do,10011
|
|
368
368
|
sky/server/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -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=
|
|
376
|
-
sky/server/requests/payloads.py,sha256=
|
|
377
|
-
sky/server/requests/preconditions.py,sha256=
|
|
375
|
+
sky/server/requests/executor.py,sha256=_6GGgRc7OyATwa8sy9tlIQ3wqC439eNtSFzYqt8GhIs,27503
|
|
376
|
+
sky/server/requests/payloads.py,sha256=_d_jLV7c4crSe7mydCKD3uXtfXR3f25aoQtGKzUnBZY,26375
|
|
377
|
+
sky/server/requests/preconditions.py,sha256=uUQjzFFHf7O5-WvBypMzqViGmd1CXksbqrrDPmY_s_Y,7178
|
|
378
378
|
sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
|
|
379
|
-
sky/server/requests/requests.py,sha256=
|
|
379
|
+
sky/server/requests/requests.py,sha256=Pkr9sMsUBDcAHZFHVxzCxzCrcgGFt2wCH7D9Jb-IzQg,25024
|
|
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,8 +385,8 @@ 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=
|
|
389
|
-
sky/setup_files/setup.py,sha256=
|
|
388
|
+
sky/setup_files/dependencies.py,sha256=iU-bM-Q3JYfMcVBG3BNaMBANLjZdmo8zpFd_IsV_wu4,7860
|
|
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
|
|
@@ -490,7 +490,7 @@ sky/utils/resource_checker.py,sha256=0rwr7yLVkYO3Qq5FZmniyPp-p66tIXmSoK5t0ZgIfso
|
|
|
490
490
|
sky/utils/resources_utils.py,sha256=3wnzmSIldFS5NmHTx6r2viS8zaP1q20noQolgQqucUU,16722
|
|
491
491
|
sky/utils/rich_console_utils.py,sha256=wPvAlshaFHuMZSjiDnaK3OSBppZLBjAn-lj7AvxNBQk,553
|
|
492
492
|
sky/utils/rich_utils.py,sha256=Q-N5bZGfvqciU5cuQacInoNpldZcaMKCdBX2368KIDA,19971
|
|
493
|
-
sky/utils/schemas.py,sha256=
|
|
493
|
+
sky/utils/schemas.py,sha256=lkz6NHdNSLZ16HL3jJ5en2vzMWzixGxXQimBv6SK8cg,57410
|
|
494
494
|
sky/utils/serialize_utils.py,sha256=nn2x-8cTZeiVr5cgaBpLOGGpSFtms62QAJFyxs_bodI,630
|
|
495
495
|
sky/utils/status_lib.py,sha256=QGkd6COD1GX1h30Mk9RMUdyeUOMJs5971GkxTcFgdsU,1705
|
|
496
496
|
sky/utils/subprocess_utils.py,sha256=tOpFY_1ml7JkVGAN1o473lcKPklGR95qBCW61eu8kEo,15773
|
|
@@ -505,7 +505,7 @@ sky/utils/aws/get_default_security_group.py,sha256=LPzz5133ZUMbzDD3iqqACL9Pdlgqi
|
|
|
505
505
|
sky/utils/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
506
506
|
sky/utils/cli_utils/status_utils.py,sha256=KYjicOiPs9n8C9VsA-JiDbhh5onHj2HwtLmIaicGjbc,16122
|
|
507
507
|
sky/utils/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
508
|
-
sky/utils/db/db_utils.py,sha256=
|
|
508
|
+
sky/utils/db/db_utils.py,sha256=7xgcawVq0U99P9t9iPJbwJqZjdG_ZCqBFyUTTW0UTnk,9917
|
|
509
509
|
sky/utils/db/migration_utils.py,sha256=4k3U3s5lUY9UifmLft4rL1ZrYhRKsToA1RcnPoyCfkE,5067
|
|
510
510
|
sky/utils/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
511
|
sky/utils/kubernetes/cleanup-tunnel.sh,sha256=rXMXuMfyB9bzKjLvXdMCjimDVvdjGPMXuqeo2ZNx9OA,2244
|
|
@@ -536,9 +536,9 @@ sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
536
536
|
sky/workspaces/core.py,sha256=AjwbbRwk0glzCnqICJk4sQzMoUcawixbXoQWKLB3-aQ,25372
|
|
537
537
|
sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
|
|
538
538
|
sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
|
|
539
|
-
skypilot_nightly-1.0.0.
|
|
540
|
-
skypilot_nightly-1.0.0.
|
|
541
|
-
skypilot_nightly-1.0.0.
|
|
542
|
-
skypilot_nightly-1.0.0.
|
|
543
|
-
skypilot_nightly-1.0.0.
|
|
544
|
-
skypilot_nightly-1.0.0.
|
|
539
|
+
skypilot_nightly-1.0.0.dev20250831.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
|
540
|
+
skypilot_nightly-1.0.0.dev20250831.dist-info/METADATA,sha256=X5TnfxOBirYarpM6ushmIZlPg3vAkHr-tbfV9Wbq_n0,19598
|
|
541
|
+
skypilot_nightly-1.0.0.dev20250831.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
542
|
+
skypilot_nightly-1.0.0.dev20250831.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
|
543
|
+
skypilot_nightly-1.0.0.dev20250831.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
|
544
|
+
skypilot_nightly-1.0.0.dev20250831.dist-info/RECORD,,
|
/sky/dashboard/out/_next/static/{hYJYFIxp_ZFONR4wTIJqZ → FtHzmn6BMJ5PzqHhEY51g}/_buildManifest.js
RENAMED
|
File without changes
|
/sky/dashboard/out/_next/static/{hYJYFIxp_ZFONR4wTIJqZ → FtHzmn6BMJ5PzqHhEY51g}/_ssgManifest.js
RENAMED
|
File without changes
|
{skypilot_nightly-1.0.0.dev20250829.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|