skypilot-nightly 1.0.0.dev20250828__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 +152 -59
- sky/backends/cloud_vm_ray_backend.py +56 -3
- sky/backends/wheel_utils.py +35 -8
- 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/clouds/aws.py +118 -1
- sky/core.py +8 -3
- sky/dashboard/out/404.html +1 -1
- sky/dashboard/out/_next/static/chunks/{webpack-6dae1cd599a34def.js → webpack-6e76f636a048e145.js} +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/global_user_state.py +58 -10
- sky/provision/aws/config.py +78 -3
- sky/provision/aws/instance.py +45 -6
- sky/provision/docker_utils.py +1 -1
- sky/provision/kubernetes/utils.py +48 -26
- sky/schemas/db/global_user_state/007_cluster_event_request_id.py +34 -0
- sky/server/common.py +1 -2
- sky/server/daemons.py +6 -0
- sky/server/requests/executor.py +2 -1
- sky/server/requests/payloads.py +4 -1
- sky/server/server.py +67 -58
- sky/setup_files/dependencies.py +25 -8
- sky/setup_files/setup.py +2 -0
- sky/sky_logging.py +28 -0
- sky/skylet/constants.py +6 -0
- sky/templates/aws-ray.yml.j2 +1 -0
- sky/utils/annotations.py +8 -2
- sky/utils/cluster_utils.py +3 -3
- sky/utils/db/migration_utils.py +1 -1
- sky/utils/kubernetes_enums.py +1 -0
- sky/utils/lock_events.py +94 -0
- sky/utils/schemas.py +6 -0
- sky/utils/timeline.py +24 -93
- {skypilot_nightly-1.0.0.dev20250828.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/METADATA +36 -48
- {skypilot_nightly-1.0.0.dev20250828.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/RECORD +59 -57
- /sky/dashboard/out/_next/static/{9DW6d9jaP2kZt0NcgIfFa → FtHzmn6BMJ5PzqHhEY51g}/_buildManifest.js +0 -0
- /sky/dashboard/out/_next/static/{9DW6d9jaP2kZt0NcgIfFa → FtHzmn6BMJ5PzqHhEY51g}/_ssgManifest.js +0 -0
- {skypilot_nightly-1.0.0.dev20250828.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250828.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250828.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250828.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/top_level.txt +0 -0
|
@@ -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
|
|
@@ -59,6 +63,7 @@ Requires-Dist: gitpython
|
|
|
59
63
|
Requires-Dist: types-paramiko
|
|
60
64
|
Requires-Dist: alembic
|
|
61
65
|
Requires-Dist: aiohttp
|
|
66
|
+
Requires-Dist: anyio
|
|
62
67
|
Provides-Extra: aws
|
|
63
68
|
Requires-Dist: awscli>=1.27.10; extra == "aws"
|
|
64
69
|
Requires-Dist: botocore>=1.29.10; extra == "aws"
|
|
@@ -73,7 +78,6 @@ Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "azure"
|
|
|
73
78
|
Requires-Dist: azure-storage-blob>=12.23.1; extra == "azure"
|
|
74
79
|
Requires-Dist: msgraph-sdk; extra == "azure"
|
|
75
80
|
Requires-Dist: msrestazure; extra == "azure"
|
|
76
|
-
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "azure"
|
|
77
81
|
Provides-Extra: gcp
|
|
78
82
|
Requires-Dist: google-api-python-client>=2.69.0; extra == "gcp"
|
|
79
83
|
Requires-Dist: google-cloud-storage; extra == "gcp"
|
|
@@ -97,7 +101,6 @@ Provides-Extra: scp
|
|
|
97
101
|
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "scp"
|
|
98
102
|
Provides-Extra: oci
|
|
99
103
|
Requires-Dist: oci; extra == "oci"
|
|
100
|
-
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "oci"
|
|
101
104
|
Provides-Extra: kubernetes
|
|
102
105
|
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "kubernetes"
|
|
103
106
|
Requires-Dist: websockets; extra == "kubernetes"
|
|
@@ -136,66 +139,51 @@ Requires-Dist: sqlalchemy_adapter; extra == "server"
|
|
|
136
139
|
Requires-Dist: passlib; extra == "server"
|
|
137
140
|
Requires-Dist: pyjwt; extra == "server"
|
|
138
141
|
Requires-Dist: aiohttp; extra == "server"
|
|
142
|
+
Requires-Dist: anyio; extra == "server"
|
|
139
143
|
Requires-Dist: grpcio>=1.63.0; extra == "server"
|
|
140
144
|
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "server"
|
|
141
145
|
Provides-Extra: all
|
|
142
|
-
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"
|
|
143
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"
|
|
144
158
|
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
145
|
-
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"
|
|
146
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"
|
|
147
170
|
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
148
171
|
Requires-Dist: azure-identity>=1.19.0; extra == "all"
|
|
149
|
-
Requires-Dist:
|
|
172
|
+
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
150
173
|
Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
|
|
151
|
-
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
152
|
-
Requires-Dist: msgraph-sdk; extra == "all"
|
|
153
|
-
Requires-Dist: msrestazure; extra == "all"
|
|
154
|
-
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
155
|
-
Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
|
|
156
|
-
Requires-Dist: google-cloud-storage; extra == "all"
|
|
157
174
|
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
158
|
-
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
159
|
-
Requires-Dist: ibm-vpc; extra == "all"
|
|
160
|
-
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
161
|
-
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
162
|
-
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
163
|
-
Requires-Dist: docker; extra == "all"
|
|
164
|
-
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
165
175
|
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
166
|
-
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
167
|
-
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
168
|
-
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
169
|
-
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
170
176
|
Requires-Dist: oci; extra == "all"
|
|
171
|
-
Requires-Dist:
|
|
172
|
-
Requires-Dist:
|
|
173
|
-
Requires-Dist:
|
|
174
|
-
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"
|
|
175
181
|
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
|
176
|
-
Requires-Dist: websockets; extra == "all"
|
|
177
|
-
Requires-Dist: python-dateutil; extra == "all"
|
|
178
|
-
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
179
182
|
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
|
|
180
|
-
Requires-Dist: runpod>=1.6.1; extra == "all"
|
|
181
|
-
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
182
|
-
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
183
|
-
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
184
183
|
Requires-Dist: azure-common; extra == "all"
|
|
185
|
-
Requires-Dist:
|
|
186
|
-
Requires-Dist:
|
|
187
|
-
Requires-Dist:
|
|
188
|
-
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
189
|
-
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
190
|
-
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
191
|
-
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
192
|
-
Requires-Dist: casbin; extra == "all"
|
|
193
|
-
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
194
|
-
Requires-Dist: passlib; extra == "all"
|
|
195
|
-
Requires-Dist: pyjwt; extra == "all"
|
|
196
|
-
Requires-Dist: aiohttp; extra == "all"
|
|
197
|
-
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
198
|
-
Requires-Dist: protobuf<7.0.0,>=5.26.1; 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"
|
|
199
187
|
Dynamic: author
|
|
200
188
|
Dynamic: classifier
|
|
201
189
|
Dynamic: description
|
{skypilot_nightly-1.0.0.dev20250828.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/RECORD
RENAMED
|
@@ -1,19 +1,19 @@
|
|
|
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
|
|
11
|
-
sky/global_user_state.py,sha256=
|
|
11
|
+
sky/global_user_state.py,sha256=GqOXBsL4e5Td9Xp3DqKNg-nPYIujYla0ErRmRqyEP5Y,88193
|
|
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
|
|
15
15
|
sky/resources.py,sha256=TY-JVOOBexmLEbUj_8tYU8O_F9jKDpFkexcGUjl0XJk,107313
|
|
16
|
-
sky/sky_logging.py,sha256=
|
|
16
|
+
sky/sky_logging.py,sha256=BQtgSnt-4TLeMLLoxhk9jE7JCnXGko1cTim9ouuefAY,9755
|
|
17
17
|
sky/skypilot_config.py,sha256=OpvpkG1ENMcotLR0J7IMAvp6e6Bt80rirZgdyTRXTGU,36775
|
|
18
18
|
sky/task.py,sha256=CApXHc5gHAWyvtIwA1sLloBC_nCgASZ_VrtkBNwQlNI,75929
|
|
19
19
|
sky/adaptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -28,18 +28,18 @@ 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
|
-
sky/backends/wheel_utils.py,sha256=
|
|
42
|
+
sky/backends/wheel_utils.py,sha256=DE71Muq5qLRhGpCVg1Rb6YOI7S_BzT8Hak27Pz8L4yw,12486
|
|
43
43
|
sky/backends/monkey_patches/monkey_patch_ray_up.py,sha256=76-y2fCaE3JINj8lEwHT1eirYzCbpD8O1ySsysuGu8o,3450
|
|
44
44
|
sky/catalog/__init__.py,sha256=uP_1iXyr3cY9PWAMi-YSgZbqtg3P5ydhW1jS2LkRfN8,14754
|
|
45
45
|
sky/catalog/aws_catalog.py,sha256=AttfW66wcHhh3gho-qSY6QzyF_WGakpAIS41syMfLTY,14194
|
|
@@ -76,18 +76,18 @@ 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
|
|
89
89
|
sky/clouds/__init__.py,sha256=tC9_Vi6GvVceWUi6uZvm7vXzBa0uH3CjRQ-QCYqdJMw,1624
|
|
90
|
-
sky/clouds/aws.py,sha256=
|
|
90
|
+
sky/clouds/aws.py,sha256=FNk2JTTrkDybRAbFLatxFP86300pv_qbIRy4tMxBpI4,62856
|
|
91
91
|
sky/clouds/azure.py,sha256=3wMJQFNye80t8zw2o2yl2F9glmXQjR8r2F4ExU396-s,33274
|
|
92
92
|
sky/clouds/cloud.py,sha256=z3ViXzRh08sYwPiy5LlzodohBGESHJnl1usSXDH9ZSQ,39945
|
|
93
93
|
sky/clouds/cudo.py,sha256=UE3Czf8qIFubzeN9QgpRAxwPnyCWyKjPMe34plqIRj8,14292
|
|
@@ -112,19 +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=
|
|
126
|
-
sky/dashboard/out/_next/static/
|
|
127
|
-
sky/dashboard/out/_next/static/
|
|
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
|
|
128
128
|
sky/dashboard/out/_next/static/chunks/1121-8afcf719ea87debc.js,sha256=fLXxFyYpxIIH-GAL9X9Ew3rc2f6zqOZqg6TjrapDZUM,8554
|
|
129
129
|
sky/dashboard/out/_next/static/chunks/1141-943efc7aff0f0c06.js,sha256=tUOoU0nIEShZeD5pBiOWrl8-czHc6PpnxxJilnDplHM,17330
|
|
130
130
|
sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
|
|
@@ -160,7 +160,7 @@ sky/dashboard/out/_next/static/chunks/framework-cf60a09ccd051a10.js,sha256=_Qbam
|
|
|
160
160
|
sky/dashboard/out/_next/static/chunks/main-app-587214043926b3cc.js,sha256=t7glRfataAjNw691Wni-ZU4a3BsygRzPKoI8NOm-lsY,116244
|
|
161
161
|
sky/dashboard/out/_next/static/chunks/main-f15ccb73239a3bf1.js,sha256=jxOPLDVX3rkMc_jvGx2a-N2v6mvfOa8O6V0o-sLT0tI,110208
|
|
162
162
|
sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
163
|
-
sky/dashboard/out/_next/static/chunks/webpack-
|
|
163
|
+
sky/dashboard/out/_next/static/chunks/webpack-6e76f636a048e145.js,sha256=wq1Fj-i_9I-RNvESKj6vxLA60J8FBnV47TSTw8yRGgE,4744
|
|
164
164
|
sky/dashboard/out/_next/static/chunks/pages/_app-ce361c6959bc2001.js,sha256=mllo4Yasw61zRtEO49uE_MrAutg9josSJShD0DNSjf0,95518
|
|
165
165
|
sky/dashboard/out/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
|
166
166
|
sky/dashboard/out/_next/static/chunks/pages/clusters-469814d711d63b1b.js,sha256=p8CQtv5n745WbV7QdyCapmglI2s_2UBB-f_KZE4RAZg,879
|
|
@@ -179,14 +179,14 @@ sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-07349868f7905d37.j
|
|
|
179
179
|
sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
|
|
180
180
|
sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-de06e613e20bc977.js,sha256=8d4XLtF8E3ahNnsbdNUQkJVbM1b9sIG9wRaoRjRwMhE,1495
|
|
181
181
|
sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
|
|
182
|
-
sky/dashboard/out/clusters/[cluster].html,sha256=
|
|
183
|
-
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=
|
|
184
|
-
sky/dashboard/out/infra/[context].html,sha256=
|
|
185
|
-
sky/dashboard/out/jobs/[job].html,sha256=
|
|
186
|
-
sky/dashboard/out/jobs/pools/[pool].html,sha256=
|
|
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
|
|
@@ -216,14 +216,14 @@ 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
|
|
223
223
|
sky/provision/provisioner.py,sha256=gH85DqHFAUJU1L95zA1kA6lsYMDzClSfQHe9gWfpBE0,33352
|
|
224
224
|
sky/provision/aws/__init__.py,sha256=mxq8PeWJqUtalDozTNpbtENErRZ1ktEs8uf2aG9UUgU,731
|
|
225
|
-
sky/provision/aws/config.py,sha256=
|
|
226
|
-
sky/provision/aws/instance.py,sha256=
|
|
225
|
+
sky/provision/aws/config.py,sha256=PkUD-_yHVSadB2j4gK7vbK7CsCQYahb1RAcydT1NEqc,31282
|
|
226
|
+
sky/provision/aws/instance.py,sha256=lUOPyFxmkufYdB0csu2-YHBomSmf5XZKaSu4Ko57ujo,45801
|
|
227
227
|
sky/provision/aws/utils.py,sha256=LrjeQ09zA7GoMv9Nt8TlL2A3VqqChsgJ9bL-Q5VLaao,3401
|
|
228
228
|
sky/provision/azure/__init__.py,sha256=87cgk1_Ws7n9rqaDDPv-HpfrkVeSQMdFQnhnXwyx9g4,548
|
|
229
229
|
sky/provision/azure/azure-config-template.json,sha256=jrjAgOtpe0e6FSg3vsVqHKQqJe0w-HeWOFT1HuwzS2c,4712
|
|
@@ -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
|
|
@@ -324,6 +324,7 @@ sky/schemas/db/global_user_state/003_fix_initial_revision.py,sha256=zFvlsWfTIrDx
|
|
|
324
324
|
sky/schemas/db/global_user_state/004_is_managed.py,sha256=D9LMF6-aM9_myMaTMz6ZNLM0K7iQZkBMRDzIigMF9nI,932
|
|
325
325
|
sky/schemas/db/global_user_state/005_cluster_event.py,sha256=ceIhoILBxESCIhhEXSEERMVjxYKW0QSebUQhRvioA2s,812
|
|
326
326
|
sky/schemas/db/global_user_state/006_provision_log.py,sha256=oj5Av1Zn58k_BWQqXpYB--8O4JrlUYXY5ndLCNU-ziM,1252
|
|
327
|
+
sky/schemas/db/global_user_state/007_cluster_event_request_id.py,sha256=LpXRCAzQZ1ly3dR-kMlMNHuEgiGpPdF7tA2sbMxa6_M,900
|
|
327
328
|
sky/schemas/db/serve_state/001_initial_schema.py,sha256=9vy5hO4Zqe-DN-33vBJQTvgJnDFcTgz18gKfO3UB62g,2595
|
|
328
329
|
sky/schemas/db/spot_jobs/001_initial_schema.py,sha256=eHT3GxFHQhySA1rO5uZq9QlloJdtTMQp93f0CRmayf8,3759
|
|
329
330
|
sky/schemas/db/spot_jobs/002_cluster_pool.py,sha256=9ef0D_lUb4WB0e9uz8E0my_X4cgK_oX-WIj4p8usbOA,1369
|
|
@@ -353,13 +354,13 @@ sky/serve/server/core.py,sha256=QEdBUE0clX8ZSQEO_mb5Gt3ykeWBdVzqtmiRcBjH7UY,1032
|
|
|
353
354
|
sky/serve/server/impl.py,sha256=mqK3FZR8Nutu9p3WPNJZaHoLetcF1UghKB21aZ5J5_M,42789
|
|
354
355
|
sky/serve/server/server.py,sha256=A9K37a0nQgZeN3eKWv62Oh2C5TSAReTZ9pHmztqlI-c,4396
|
|
355
356
|
sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
|
|
356
|
-
sky/server/common.py,sha256=
|
|
357
|
+
sky/server/common.py,sha256=WCKQT3tHi6D5-w8IaMEXHeD6iIITeiXVK4Du9640V1Y,39317
|
|
357
358
|
sky/server/config.py,sha256=XWf5Kw4am6vMO5wcyWevbQAFH-dmKb7AMEgDzD083-M,8538
|
|
358
359
|
sky/server/constants.py,sha256=yjX8t73w6gj3_SDSP4vBFdNdiOqq7dnlXT2pw3yo0jM,2321
|
|
359
|
-
sky/server/daemons.py,sha256=
|
|
360
|
+
sky/server/daemons.py,sha256=Og2F560XO4n70TPxxvrbkNUujftX4V4GxRA0E6-nSrw,9206
|
|
360
361
|
sky/server/metrics.py,sha256=6H6n6dq_C5HMaU97mJlRUB9bqOEA_k205PO15wE3AWk,3648
|
|
361
362
|
sky/server/rest.py,sha256=6Qcn6fjypP3j9UHdKRgvt2-PU1LKz2VU2aVQEA1D6EI,14354
|
|
362
|
-
sky/server/server.py,sha256=
|
|
363
|
+
sky/server/server.py,sha256=nwHagVG3bS2Nr4_uepkl7DxulEtuDzYYIyHmwiBWLto,79134
|
|
363
364
|
sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
|
|
364
365
|
sky/server/stream_utils.py,sha256=RS4RuMxQqTGqp3uxzZVtmFWzos4d49P7hMX_VklzEVU,9189
|
|
365
366
|
sky/server/uvicorn.py,sha256=4D4uoz5Hv-IpVGkhOF2FozBJwCE13fYWwHCNUc_N17s,10665
|
|
@@ -371,8 +372,8 @@ sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
|
|
|
371
372
|
sky/server/html/token_page.html,sha256=eUndS5u1foL9vaWGPRTLMt7lCzD1g0wYJ2v_EeeFzlc,7046
|
|
372
373
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
373
374
|
sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
|
|
374
|
-
sky/server/requests/executor.py,sha256=
|
|
375
|
-
sky/server/requests/payloads.py,sha256=
|
|
375
|
+
sky/server/requests/executor.py,sha256=_6GGgRc7OyATwa8sy9tlIQ3wqC439eNtSFzYqt8GhIs,27503
|
|
376
|
+
sky/server/requests/payloads.py,sha256=_d_jLV7c4crSe7mydCKD3uXtfXR3f25aoQtGKzUnBZY,26375
|
|
376
377
|
sky/server/requests/preconditions.py,sha256=uUQjzFFHf7O5-WvBypMzqViGmd1CXksbqrrDPmY_s_Y,7178
|
|
377
378
|
sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
|
|
378
379
|
sky/server/requests/requests.py,sha256=Pkr9sMsUBDcAHZFHVxzCxzCrcgGFt2wCH7D9Jb-IzQg,25024
|
|
@@ -384,14 +385,14 @@ sky/server/requests/serializers/decoders.py,sha256=zE2BeTYVcBAK6a_V9YmMPRBQ9xos5
|
|
|
384
385
|
sky/server/requests/serializers/encoders.py,sha256=EsKpscRTjxLRgDDw4DgJNjmRu1q-5bvj6zBe-tebaLc,7584
|
|
385
386
|
sky/setup_files/MANIFEST.in,sha256=4gbgHHwSdP6BbMJv5XOt-2K6wUVWF_T9CGsdESvh918,776
|
|
386
387
|
sky/setup_files/alembic.ini,sha256=854_UKvCaFmZ8vI16tSHbGgP9IMFQ42Td6c9Zmn2Oxs,5079
|
|
387
|
-
sky/setup_files/dependencies.py,sha256=
|
|
388
|
-
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
|
|
389
390
|
sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
|
|
390
391
|
sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
391
392
|
sky/skylet/attempt_skylet.py,sha256=GZ6ITjjA0m-da3IxXXfoHR6n4pjp3X3TOXUqVvSrV0k,2136
|
|
392
393
|
sky/skylet/autostop_lib.py,sha256=2eab980ckQ5dA2DFAJlI5bAJ6EI7YI-JSlzFoTA9XwU,9698
|
|
393
394
|
sky/skylet/configs.py,sha256=nNBnpuzoU696FbC3Nv0qKVSDuTw4GAbr7eCcg0_Sldo,2135
|
|
394
|
-
sky/skylet/constants.py,sha256=
|
|
395
|
+
sky/skylet/constants.py,sha256=uLlryUYPUcWQIHYTzm_fX9fOAE51JkBXeUE9RNO-ieI,24028
|
|
395
396
|
sky/skylet/events.py,sha256=vOGqqgZM0aJAjSg3YluIO7mnbbxg9VF-iBVPuQHuBac,13801
|
|
396
397
|
sky/skylet/job_lib.py,sha256=cUud2sVcnHcZbqzHYGpiBy7EKSIphX8SqWg5Rsh-Su4,49533
|
|
397
398
|
sky/skylet/log_lib.py,sha256=-kfeSNb7gR7Z-G7ADHh9Na4_QO-T0o2WzYYhcrrHSIE,23349
|
|
@@ -423,7 +424,7 @@ sky/skylet/ray_patches/worker.py.patch,sha256=_OBhibdr3xOy5Qje6Tt8D1eQVm_msi50TJ
|
|
|
423
424
|
sky/ssh_node_pools/__init__.py,sha256=phpYJAd7I0uO1-O87eb9PbetGbtMiKW5mI-NQCZlXPA,40
|
|
424
425
|
sky/ssh_node_pools/core.py,sha256=uUWDsn5zXkOOtIX5dpB_8qwb33_Fy6NhBDQADGAQ5WA,4917
|
|
425
426
|
sky/ssh_node_pools/server.py,sha256=Qb4Zu6DxqDQG8snUtvWLnUu40hqZEczdA1hVaP-h-y0,8351
|
|
426
|
-
sky/templates/aws-ray.yml.j2,sha256=
|
|
427
|
+
sky/templates/aws-ray.yml.j2,sha256=ppW_L_o4g465jOgYNyDBssMt0V5ryWNoeLjs6Xeq9pE,9380
|
|
427
428
|
sky/templates/azure-ray.yml.j2,sha256=cQfCDev0quaVfVst_ly3tA8XrGXuAmAhkRJuS7qxFhg,6373
|
|
428
429
|
sky/templates/cudo-ray.yml.j2,sha256=9g0yFYUk6xPet-JNTPuVDZlVZ9oAcFPL1qaE6fyy-Xc,3797
|
|
429
430
|
sky/templates/do-ray.yml.j2,sha256=xtTVOrJzxyQOBnFZdCLd2C5aYn3lnPQ0emBaP0P-SdQ,4233
|
|
@@ -461,9 +462,9 @@ sky/users/token_service.py,sha256=78Xgm6rkd5M6IMMUekAp2YNLms4teNNvVDPfHh_5jts,78
|
|
|
461
462
|
sky/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
462
463
|
sky/utils/accelerator_registry.py,sha256=I2BLe74i7qBTE4X73N-cVbOJNX1Pcextm9OIRQFfnl0,4803
|
|
463
464
|
sky/utils/admin_policy_utils.py,sha256=VkE3FGzv5a7KnRO0R1PX0buJ274vF__n1xgXJ_9ykTs,7105
|
|
464
|
-
sky/utils/annotations.py,sha256=
|
|
465
|
+
sky/utils/annotations.py,sha256=No49yFuNIGtFgxU1bmBh2REx_Yn08o7Is-c56QynDIs,1910
|
|
465
466
|
sky/utils/atomic.py,sha256=vrw-7XCnckF0xCx-ttamao7evPdGtVsnjaTtgMlBXIE,1280
|
|
466
|
-
sky/utils/cluster_utils.py,sha256=
|
|
467
|
+
sky/utils/cluster_utils.py,sha256=S8qjky9x1vkLAN4fhLkA8atJVtjdpvueqnZLEiuD5YQ,14441
|
|
467
468
|
sky/utils/command_runner.py,sha256=tmkbVPDr17ZBAA-_TzKAus6LMtuIGk2QLLVFjIYPnUE,48582
|
|
468
469
|
sky/utils/command_runner.pyi,sha256=IS3qeCTgWys94KhaHx3S2Pty8qDWn_zFht7bgDLJFcw,9593
|
|
469
470
|
sky/utils/common.py,sha256=yJc110y8rwcBIKEJgb8kUD4e1OeolFEVtonwmqtAxCM,2729
|
|
@@ -479,7 +480,8 @@ sky/utils/env_options.py,sha256=UjPNtr5h-L0HkzhLIUdKDVHrx73QQngz3a5Z5mq-v1Q,2091
|
|
|
479
480
|
sky/utils/git.py,sha256=rzGuJ1PEjAk8jG2X9a9QXSVJ-UqiSSNeRsHvr4bG7zI,278
|
|
480
481
|
sky/utils/git_clone.sh,sha256=hXOz7i1MCYl2IwMdKnFYhinhh8Jaf5a1Qwd65cePQYc,17790
|
|
481
482
|
sky/utils/infra_utils.py,sha256=WkkB4Hj6CX-3eV029fPYqydNVyFZ8ZwRAVA_GCLJ9QU,6981
|
|
482
|
-
sky/utils/kubernetes_enums.py,sha256=
|
|
483
|
+
sky/utils/kubernetes_enums.py,sha256=t0OIohiphgyo78RG4MUg0gOjRea5l6ZMRXlS34J-NaA,1412
|
|
484
|
+
sky/utils/lock_events.py,sha256=qX4-Nlzm4S9bTD4e2eg2Vgn4AOlTjy7rhzLS_0B1IdA,2827
|
|
483
485
|
sky/utils/locks.py,sha256=L51SbGY48b1gQQp8qk3HBentcENozYx1u68KuNL-_Jo,10729
|
|
484
486
|
sky/utils/log_utils.py,sha256=RB5n58CAWmVepd_RAf-mjL2EViBFbtkPtSB5jJT6pLY,29684
|
|
485
487
|
sky/utils/message_utils.py,sha256=zi2Z7PEX6Xq_zvho-aEZe_J7UvpKOLdVDdGAcipRQPU,2662
|
|
@@ -488,12 +490,12 @@ sky/utils/resource_checker.py,sha256=0rwr7yLVkYO3Qq5FZmniyPp-p66tIXmSoK5t0ZgIfso
|
|
|
488
490
|
sky/utils/resources_utils.py,sha256=3wnzmSIldFS5NmHTx6r2viS8zaP1q20noQolgQqucUU,16722
|
|
489
491
|
sky/utils/rich_console_utils.py,sha256=wPvAlshaFHuMZSjiDnaK3OSBppZLBjAn-lj7AvxNBQk,553
|
|
490
492
|
sky/utils/rich_utils.py,sha256=Q-N5bZGfvqciU5cuQacInoNpldZcaMKCdBX2368KIDA,19971
|
|
491
|
-
sky/utils/schemas.py,sha256=
|
|
493
|
+
sky/utils/schemas.py,sha256=lkz6NHdNSLZ16HL3jJ5en2vzMWzixGxXQimBv6SK8cg,57410
|
|
492
494
|
sky/utils/serialize_utils.py,sha256=nn2x-8cTZeiVr5cgaBpLOGGpSFtms62QAJFyxs_bodI,630
|
|
493
495
|
sky/utils/status_lib.py,sha256=QGkd6COD1GX1h30Mk9RMUdyeUOMJs5971GkxTcFgdsU,1705
|
|
494
496
|
sky/utils/subprocess_utils.py,sha256=tOpFY_1ml7JkVGAN1o473lcKPklGR95qBCW61eu8kEo,15773
|
|
495
497
|
sky/utils/tempstore.py,sha256=3S5fJ3UjnE12ve38c3MpTXpoRWfDSGndZpqNe7P_8aU,2148
|
|
496
|
-
sky/utils/timeline.py,sha256=
|
|
498
|
+
sky/utils/timeline.py,sha256=W_HrRBWS9glV25CyCBGUTn1OBe7b0S7kBL8_jv18CZU,3060
|
|
497
499
|
sky/utils/ux_utils.py,sha256=6Y9SpePKlc64gv1v5TK9cL3h_ZeTwowDuYWUbdLuJWU,11418
|
|
498
500
|
sky/utils/validator.py,sha256=AHIYEBpxzpC2Eg8TulruFqQSjTxeynB0Dc7cfP1RX2M,1159
|
|
499
501
|
sky/utils/volume.py,sha256=b1dybVUGUjDTEXint7SBezelUO86Dsz8eXZ5WZqVedM,2860
|
|
@@ -504,7 +506,7 @@ sky/utils/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
504
506
|
sky/utils/cli_utils/status_utils.py,sha256=KYjicOiPs9n8C9VsA-JiDbhh5onHj2HwtLmIaicGjbc,16122
|
|
505
507
|
sky/utils/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
506
508
|
sky/utils/db/db_utils.py,sha256=7xgcawVq0U99P9t9iPJbwJqZjdG_ZCqBFyUTTW0UTnk,9917
|
|
507
|
-
sky/utils/db/migration_utils.py,sha256=
|
|
509
|
+
sky/utils/db/migration_utils.py,sha256=4k3U3s5lUY9UifmLft4rL1ZrYhRKsToA1RcnPoyCfkE,5067
|
|
508
510
|
sky/utils/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
509
511
|
sky/utils/kubernetes/cleanup-tunnel.sh,sha256=rXMXuMfyB9bzKjLvXdMCjimDVvdjGPMXuqeo2ZNx9OA,2244
|
|
510
512
|
sky/utils/kubernetes/config_map_utils.py,sha256=Qq-Glt1SeYDfhcCqcpRtBDRPum0CYR50gpoa_Xm7u1s,4754
|
|
@@ -534,9 +536,9 @@ sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
534
536
|
sky/workspaces/core.py,sha256=AjwbbRwk0glzCnqICJk4sQzMoUcawixbXoQWKLB3-aQ,25372
|
|
535
537
|
sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
|
|
536
538
|
sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
|
|
537
|
-
skypilot_nightly-1.0.0.
|
|
538
|
-
skypilot_nightly-1.0.0.
|
|
539
|
-
skypilot_nightly-1.0.0.
|
|
540
|
-
skypilot_nightly-1.0.0.
|
|
541
|
-
skypilot_nightly-1.0.0.
|
|
542
|
-
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/{9DW6d9jaP2kZt0NcgIfFa → FtHzmn6BMJ5PzqHhEY51g}/_buildManifest.js
RENAMED
|
File without changes
|
/sky/dashboard/out/_next/static/{9DW6d9jaP2kZt0NcgIfFa → FtHzmn6BMJ5PzqHhEY51g}/_ssgManifest.js
RENAMED
|
File without changes
|
{skypilot_nightly-1.0.0.dev20250828.dist-info → skypilot_nightly-1.0.0.dev20250831.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|