skypilot-nightly 1.0.0.dev20250831__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.
- sky/__init__.py +2 -2
- 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/global_user_state.py +67 -0
- sky/jobs/server/server.py +2 -1
- sky/serve/server/server.py +2 -1
- sky/server/common.py +8 -6
- sky/server/metrics.py +82 -6
- sky/server/requests/executor.py +6 -2
- sky/server/requests/preconditions.py +3 -2
- sky/server/requests/requests.py +118 -29
- sky/server/server.py +50 -18
- sky/server/stream_utils.py +7 -5
- sky/server/uvicorn.py +7 -0
- sky/setup_files/dependencies.py +4 -1
- sky/skylet/constants.py +3 -0
- sky/utils/db/db_utils.py +64 -1
- sky/utils/perf_utils.py +22 -0
- {skypilot_nightly-1.0.0.dev20250831.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/METADATA +36 -33
- {skypilot_nightly-1.0.0.dev20250831.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/RECORD +40 -39
- /sky/dashboard/out/_next/static/{FtHzmn6BMJ5PzqHhEY51g → EqPZ0ygxa__3XPBVJ9dpy}/_buildManifest.js +0 -0
- /sky/dashboard/out/_next/static/{FtHzmn6BMJ5PzqHhEY51g → EqPZ0ygxa__3XPBVJ9dpy}/_ssgManifest.js +0 -0
- {skypilot_nightly-1.0.0.dev20250831.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250831.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250831.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250831.dist-info → skypilot_nightly-1.0.0.dev20250901.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.dev20250901
|
|
4
4
|
Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
|
|
5
5
|
Author: SkyPilot Team
|
|
6
6
|
License: Apache 2.0
|
|
@@ -38,7 +38,7 @@ Requires-Dist: python-dotenv
|
|
|
38
38
|
Requires-Dist: rich
|
|
39
39
|
Requires-Dist: tabulate
|
|
40
40
|
Requires-Dist: typing_extensions
|
|
41
|
-
Requires-Dist: filelock>=3.
|
|
41
|
+
Requires-Dist: filelock>=3.15.0
|
|
42
42
|
Requires-Dist: packaging
|
|
43
43
|
Requires-Dist: psutil
|
|
44
44
|
Requires-Dist: pulp
|
|
@@ -63,6 +63,7 @@ Requires-Dist: gitpython
|
|
|
63
63
|
Requires-Dist: types-paramiko
|
|
64
64
|
Requires-Dist: alembic
|
|
65
65
|
Requires-Dist: aiohttp
|
|
66
|
+
Requires-Dist: aiosqlite
|
|
66
67
|
Requires-Dist: anyio
|
|
67
68
|
Provides-Extra: aws
|
|
68
69
|
Requires-Dist: awscli>=1.27.10; extra == "aws"
|
|
@@ -142,48 +143,50 @@ Requires-Dist: aiohttp; extra == "server"
|
|
|
142
143
|
Requires-Dist: anyio; extra == "server"
|
|
143
144
|
Requires-Dist: grpcio>=1.63.0; extra == "server"
|
|
144
145
|
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "server"
|
|
146
|
+
Requires-Dist: aiosqlite; extra == "server"
|
|
145
147
|
Provides-Extra: all
|
|
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"
|
|
151
148
|
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
152
|
-
Requires-Dist:
|
|
153
|
-
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
154
|
-
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
149
|
+
Requires-Dist: azure-identity>=1.19.0; extra == "all"
|
|
155
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"
|
|
157
|
+
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
158
|
+
Requires-Dist: ibm-vpc; extra == "all"
|
|
159
|
+
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
160
|
+
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
161
|
+
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
156
162
|
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
163
|
+
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
157
164
|
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
158
|
-
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
159
|
-
Requires-Dist: docker; extra == "all"
|
|
160
|
-
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
161
165
|
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
162
|
-
Requires-Dist:
|
|
163
|
-
Requires-Dist:
|
|
164
|
-
Requires-Dist:
|
|
166
|
+
Requires-Dist: passlib; extra == "all"
|
|
167
|
+
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
168
|
+
Requires-Dist: aiohttp; extra == "all"
|
|
169
|
+
Requires-Dist: aiosqlite; extra == "all"
|
|
165
170
|
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
166
|
-
Requires-Dist:
|
|
167
|
-
Requires-Dist: ibm-
|
|
168
|
-
Requires-Dist:
|
|
169
|
-
Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
|
|
170
|
-
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
171
|
-
Requires-Dist: azure-identity>=1.19.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"
|
|
172
174
|
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
173
|
-
Requires-Dist:
|
|
174
|
-
Requires-Dist:
|
|
175
|
-
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
176
|
-
Requires-Dist: oci; extra == "all"
|
|
175
|
+
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
176
|
+
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
177
177
|
Requires-Dist: msgraph-sdk; extra == "all"
|
|
178
|
-
Requires-Dist:
|
|
178
|
+
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
179
|
+
Requires-Dist: anyio; extra == "all"
|
|
180
|
+
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
181
|
+
Requires-Dist: docker; extra == "all"
|
|
182
|
+
Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
|
|
179
183
|
Requires-Dist: pyjwt; extra == "all"
|
|
180
|
-
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
181
|
-
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
|
182
|
-
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
|
|
183
184
|
Requires-Dist: azure-common; extra == "all"
|
|
184
|
-
Requires-Dist:
|
|
185
|
-
Requires-Dist:
|
|
186
|
-
Requires-Dist:
|
|
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"
|
|
187
190
|
Dynamic: author
|
|
188
191
|
Dynamic: classifier
|
|
189
192
|
Dynamic: description
|
{skypilot_nightly-1.0.0.dev20250831.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sky/__init__.py,sha256=
|
|
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
|
|
@@ -8,7 +8,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=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
|
|
@@ -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=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=
|
|
120
|
-
sky/dashboard/out/infra.html,sha256=
|
|
121
|
-
sky/dashboard/out/jobs.html,sha256=
|
|
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=
|
|
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=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
|
|
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
|
|
@@ -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=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=
|
|
189
|
-
sky/dashboard/out/workspaces/[name].html,sha256=
|
|
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
|
|
@@ -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=Wi3TcDg9AnI3yEJNXBA0G5LudEUSdT4C9oiofAa_dfM,7263
|
|
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
|
|
@@ -352,18 +352,18 @@ 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=zzHQdsFWdSzoAIgPw-SQsxem559psu31X6BG0sSWSxw,4464
|
|
356
356
|
sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
|
|
357
|
-
sky/server/common.py,sha256=
|
|
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=
|
|
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=
|
|
363
|
+
sky/server/server.py,sha256=v86-47mJtk_e25j3f9PkW-Lod3FdjDCM7426LWxe2G0,80390
|
|
364
364
|
sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
|
|
365
|
-
sky/server/stream_utils.py,sha256=
|
|
366
|
-
sky/server/uvicorn.py,sha256=
|
|
365
|
+
sky/server/stream_utils.py,sha256=Ym9yIP-JhA58YUFfHL8gM0Xwnho1AYO9WX_UJ_gOIdM,9274
|
|
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=
|
|
375
|
+
sky/server/requests/executor.py,sha256=5yrttKUBi2wReUlizGIX5XYofVNp4TUfhGyxDWuTioI,27735
|
|
376
376
|
sky/server/requests/payloads.py,sha256=_d_jLV7c4crSe7mydCKD3uXtfXR3f25aoQtGKzUnBZY,26375
|
|
377
|
-
sky/server/requests/preconditions.py,sha256=
|
|
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=
|
|
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=
|
|
388
|
+
sky/setup_files/dependencies.py,sha256=rNs8UXu6gbWiOWh9WC3_fZu5MIaiep6eRH65GbqAb34,7963
|
|
389
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=
|
|
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,6 +485,7 @@ 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
|
|
@@ -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=
|
|
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.
|
|
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.
|
|
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,,
|
/sky/dashboard/out/_next/static/{FtHzmn6BMJ5PzqHhEY51g → EqPZ0ygxa__3XPBVJ9dpy}/_buildManifest.js
RENAMED
|
File without changes
|
/sky/dashboard/out/_next/static/{FtHzmn6BMJ5PzqHhEY51g → EqPZ0ygxa__3XPBVJ9dpy}/_ssgManifest.js
RENAMED
|
File without changes
|
{skypilot_nightly-1.0.0.dev20250831.dist-info → skypilot_nightly-1.0.0.dev20250901.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|