skypilot-nightly 1.0.0.dev20251016__py3-none-any.whl → 1.0.0.dev20251017__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (41) hide show
  1. sky/__init__.py +2 -2
  2. sky/authentication.py +17 -157
  3. sky/backends/backend_utils.py +6 -5
  4. sky/catalog/kubernetes_catalog.py +5 -3
  5. sky/client/cli/command.py +0 -1
  6. sky/dashboard/out/404.html +1 -1
  7. sky/dashboard/out/_next/static/chunks/{webpack-66f23594d38c7f16.js → webpack-3c431f6c9086e487.js} +1 -1
  8. sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
  9. sky/dashboard/out/clusters/[cluster].html +1 -1
  10. sky/dashboard/out/clusters.html +1 -1
  11. sky/dashboard/out/config.html +1 -1
  12. sky/dashboard/out/index.html +1 -1
  13. sky/dashboard/out/infra/[context].html +1 -1
  14. sky/dashboard/out/infra.html +1 -1
  15. sky/dashboard/out/jobs/[job].html +1 -1
  16. sky/dashboard/out/jobs/pools/[pool].html +1 -1
  17. sky/dashboard/out/jobs.html +1 -1
  18. sky/dashboard/out/users.html +1 -1
  19. sky/dashboard/out/volumes.html +1 -1
  20. sky/dashboard/out/workspace/new.html +1 -1
  21. sky/dashboard/out/workspaces/[name].html +1 -1
  22. sky/dashboard/out/workspaces.html +1 -1
  23. sky/provision/fluidstack/instance.py +2 -2
  24. sky/provision/seeweb/instance.py +3 -3
  25. sky/serve/service.py +2 -2
  26. sky/server/requests/preconditions.py +2 -2
  27. sky/server/requests/requests.py +32 -24
  28. sky/server/server.py +2 -4
  29. sky/server/stream_utils.py +10 -3
  30. sky/setup_files/dependencies.py +19 -8
  31. sky/utils/auth_utils.py +153 -0
  32. sky/utils/command_runner.py +3 -0
  33. sky/utils/locks.py +5 -2
  34. {skypilot_nightly-1.0.0.dev20251016.dist-info → skypilot_nightly-1.0.0.dev20251017.dist-info}/METADATA +281 -52
  35. {skypilot_nightly-1.0.0.dev20251016.dist-info → skypilot_nightly-1.0.0.dev20251017.dist-info}/RECORD +41 -40
  36. /sky/dashboard/out/_next/static/{pbgtEUoCUdmJyLHjgln5A → 3xvBA5BSGbiQ87tVmfbpY}/_buildManifest.js +0 -0
  37. /sky/dashboard/out/_next/static/{pbgtEUoCUdmJyLHjgln5A → 3xvBA5BSGbiQ87tVmfbpY}/_ssgManifest.js +0 -0
  38. {skypilot_nightly-1.0.0.dev20251016.dist-info → skypilot_nightly-1.0.0.dev20251017.dist-info}/WHEEL +0 -0
  39. {skypilot_nightly-1.0.0.dev20251016.dist-info → skypilot_nightly-1.0.0.dev20251017.dist-info}/entry_points.txt +0 -0
  40. {skypilot_nightly-1.0.0.dev20251016.dist-info → skypilot_nightly-1.0.0.dev20251017.dist-info}/licenses/LICENSE +0 -0
  41. {skypilot_nightly-1.0.0.dev20251016.dist-info → skypilot_nightly-1.0.0.dev20251017.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.dev20251016
3
+ Version: 1.0.0.dev20251017
4
4
  Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
5
5
  Author: SkyPilot Team
6
6
  License: Apache 2.0
@@ -66,13 +66,22 @@ Requires-Dist: gitpython
66
66
  Requires-Dist: types-paramiko
67
67
  Requires-Dist: alembic
68
68
  Requires-Dist: aiohttp
69
- Requires-Dist: aiosqlite
70
69
  Requires-Dist: anyio
71
70
  Provides-Extra: aws
72
71
  Requires-Dist: awscli>=1.27.10; extra == "aws"
73
72
  Requires-Dist: botocore>=1.29.10; extra == "aws"
74
73
  Requires-Dist: boto3>=1.26.1; extra == "aws"
75
74
  Requires-Dist: colorama<0.4.5; extra == "aws"
75
+ Requires-Dist: casbin; extra == "aws"
76
+ Requires-Dist: sqlalchemy_adapter; extra == "aws"
77
+ Requires-Dist: passlib; extra == "aws"
78
+ Requires-Dist: pyjwt; extra == "aws"
79
+ Requires-Dist: aiohttp; extra == "aws"
80
+ Requires-Dist: anyio; extra == "aws"
81
+ Requires-Dist: grpcio>=1.63.0; extra == "aws"
82
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "aws"
83
+ Requires-Dist: aiosqlite; extra == "aws"
84
+ Requires-Dist: greenlet; extra == "aws"
76
85
  Provides-Extra: azure
77
86
  Requires-Dist: azure-cli>=2.65.0; extra == "azure"
78
87
  Requires-Dist: azure-core>=1.31.0; extra == "azure"
@@ -82,56 +91,233 @@ Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "azure"
82
91
  Requires-Dist: azure-storage-blob>=12.23.1; extra == "azure"
83
92
  Requires-Dist: msgraph-sdk; extra == "azure"
84
93
  Requires-Dist: msrestazure; extra == "azure"
94
+ Requires-Dist: casbin; extra == "azure"
95
+ Requires-Dist: sqlalchemy_adapter; extra == "azure"
96
+ Requires-Dist: passlib; extra == "azure"
97
+ Requires-Dist: pyjwt; extra == "azure"
98
+ Requires-Dist: aiohttp; extra == "azure"
99
+ Requires-Dist: anyio; extra == "azure"
100
+ Requires-Dist: grpcio>=1.63.0; extra == "azure"
101
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "azure"
102
+ Requires-Dist: aiosqlite; extra == "azure"
103
+ Requires-Dist: greenlet; extra == "azure"
85
104
  Provides-Extra: gcp
86
105
  Requires-Dist: google-api-python-client>=2.69.0; extra == "gcp"
87
106
  Requires-Dist: google-cloud-storage; extra == "gcp"
88
107
  Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "gcp"
108
+ Requires-Dist: casbin; extra == "gcp"
109
+ Requires-Dist: sqlalchemy_adapter; extra == "gcp"
110
+ Requires-Dist: passlib; extra == "gcp"
111
+ Requires-Dist: pyjwt; extra == "gcp"
112
+ Requires-Dist: aiohttp; extra == "gcp"
113
+ Requires-Dist: anyio; extra == "gcp"
114
+ Requires-Dist: grpcio>=1.63.0; extra == "gcp"
115
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "gcp"
116
+ Requires-Dist: aiosqlite; extra == "gcp"
117
+ Requires-Dist: greenlet; extra == "gcp"
89
118
  Provides-Extra: ibm
90
119
  Requires-Dist: ibm-cloud-sdk-core; extra == "ibm"
91
120
  Requires-Dist: ibm-vpc; extra == "ibm"
92
121
  Requires-Dist: ibm-platform-services>=0.48.0; extra == "ibm"
93
122
  Requires-Dist: ibm-cos-sdk; extra == "ibm"
94
123
  Requires-Dist: ray[default]>=2.6.1; extra == "ibm"
124
+ Requires-Dist: casbin; extra == "ibm"
125
+ Requires-Dist: sqlalchemy_adapter; extra == "ibm"
126
+ Requires-Dist: passlib; extra == "ibm"
127
+ Requires-Dist: pyjwt; extra == "ibm"
128
+ Requires-Dist: aiohttp; extra == "ibm"
129
+ Requires-Dist: anyio; extra == "ibm"
130
+ Requires-Dist: grpcio>=1.63.0; extra == "ibm"
131
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "ibm"
132
+ Requires-Dist: aiosqlite; extra == "ibm"
133
+ Requires-Dist: greenlet; extra == "ibm"
95
134
  Provides-Extra: docker
96
135
  Requires-Dist: docker; extra == "docker"
97
136
  Requires-Dist: ray[default]>=2.6.1; extra == "docker"
137
+ Requires-Dist: casbin; extra == "docker"
138
+ Requires-Dist: sqlalchemy_adapter; extra == "docker"
139
+ Requires-Dist: passlib; extra == "docker"
140
+ Requires-Dist: pyjwt; extra == "docker"
141
+ Requires-Dist: aiohttp; extra == "docker"
142
+ Requires-Dist: anyio; extra == "docker"
143
+ Requires-Dist: grpcio>=1.63.0; extra == "docker"
144
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "docker"
145
+ Requires-Dist: aiosqlite; extra == "docker"
146
+ Requires-Dist: greenlet; extra == "docker"
98
147
  Provides-Extra: lambda
148
+ Requires-Dist: casbin; extra == "lambda"
149
+ Requires-Dist: sqlalchemy_adapter; extra == "lambda"
150
+ Requires-Dist: passlib; extra == "lambda"
151
+ Requires-Dist: pyjwt; extra == "lambda"
152
+ Requires-Dist: aiohttp; extra == "lambda"
153
+ Requires-Dist: anyio; extra == "lambda"
154
+ Requires-Dist: grpcio>=1.63.0; extra == "lambda"
155
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "lambda"
156
+ Requires-Dist: aiosqlite; extra == "lambda"
157
+ Requires-Dist: greenlet; extra == "lambda"
99
158
  Provides-Extra: cloudflare
100
159
  Requires-Dist: awscli>=1.27.10; extra == "cloudflare"
101
160
  Requires-Dist: botocore>=1.29.10; extra == "cloudflare"
102
161
  Requires-Dist: boto3>=1.26.1; extra == "cloudflare"
103
162
  Requires-Dist: colorama<0.4.5; extra == "cloudflare"
163
+ Requires-Dist: casbin; extra == "cloudflare"
164
+ Requires-Dist: sqlalchemy_adapter; extra == "cloudflare"
165
+ Requires-Dist: passlib; extra == "cloudflare"
166
+ Requires-Dist: pyjwt; extra == "cloudflare"
167
+ Requires-Dist: aiohttp; extra == "cloudflare"
168
+ Requires-Dist: anyio; extra == "cloudflare"
169
+ Requires-Dist: grpcio>=1.63.0; extra == "cloudflare"
170
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "cloudflare"
171
+ Requires-Dist: aiosqlite; extra == "cloudflare"
172
+ Requires-Dist: greenlet; extra == "cloudflare"
104
173
  Provides-Extra: scp
105
174
  Requires-Dist: ray[default]>=2.6.1; extra == "scp"
175
+ Requires-Dist: casbin; extra == "scp"
176
+ Requires-Dist: sqlalchemy_adapter; extra == "scp"
177
+ Requires-Dist: passlib; extra == "scp"
178
+ Requires-Dist: pyjwt; extra == "scp"
179
+ Requires-Dist: aiohttp; extra == "scp"
180
+ Requires-Dist: anyio; extra == "scp"
181
+ Requires-Dist: grpcio>=1.63.0; extra == "scp"
182
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "scp"
183
+ Requires-Dist: aiosqlite; extra == "scp"
184
+ Requires-Dist: greenlet; extra == "scp"
106
185
  Provides-Extra: oci
107
186
  Requires-Dist: oci; extra == "oci"
187
+ Requires-Dist: casbin; extra == "oci"
188
+ Requires-Dist: sqlalchemy_adapter; extra == "oci"
189
+ Requires-Dist: passlib; extra == "oci"
190
+ Requires-Dist: pyjwt; extra == "oci"
191
+ Requires-Dist: aiohttp; extra == "oci"
192
+ Requires-Dist: anyio; extra == "oci"
193
+ Requires-Dist: grpcio>=1.63.0; extra == "oci"
194
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "oci"
195
+ Requires-Dist: aiosqlite; extra == "oci"
196
+ Requires-Dist: greenlet; extra == "oci"
108
197
  Provides-Extra: kubernetes
109
198
  Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "kubernetes"
110
199
  Requires-Dist: websockets; extra == "kubernetes"
111
200
  Requires-Dist: python-dateutil; extra == "kubernetes"
201
+ Requires-Dist: casbin; extra == "kubernetes"
202
+ Requires-Dist: sqlalchemy_adapter; extra == "kubernetes"
203
+ Requires-Dist: passlib; extra == "kubernetes"
204
+ Requires-Dist: pyjwt; extra == "kubernetes"
205
+ Requires-Dist: aiohttp; extra == "kubernetes"
206
+ Requires-Dist: anyio; extra == "kubernetes"
207
+ Requires-Dist: grpcio>=1.63.0; extra == "kubernetes"
208
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "kubernetes"
209
+ Requires-Dist: aiosqlite; extra == "kubernetes"
210
+ Requires-Dist: greenlet; extra == "kubernetes"
112
211
  Provides-Extra: ssh
113
212
  Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "ssh"
114
213
  Requires-Dist: websockets; extra == "ssh"
115
214
  Requires-Dist: python-dateutil; extra == "ssh"
116
- Provides-Extra: remote
117
- Requires-Dist: grpcio>=1.63.0; extra == "remote"
118
- Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "remote"
215
+ Requires-Dist: casbin; extra == "ssh"
216
+ Requires-Dist: sqlalchemy_adapter; extra == "ssh"
217
+ Requires-Dist: passlib; extra == "ssh"
218
+ Requires-Dist: pyjwt; extra == "ssh"
219
+ Requires-Dist: aiohttp; extra == "ssh"
220
+ Requires-Dist: anyio; extra == "ssh"
221
+ Requires-Dist: grpcio>=1.63.0; extra == "ssh"
222
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "ssh"
223
+ Requires-Dist: aiosqlite; extra == "ssh"
224
+ Requires-Dist: greenlet; extra == "ssh"
119
225
  Provides-Extra: runpod
120
226
  Requires-Dist: runpod>=1.6.1; extra == "runpod"
121
227
  Requires-Dist: tomli; python_version < "3.11" and extra == "runpod"
228
+ Requires-Dist: casbin; extra == "runpod"
229
+ Requires-Dist: sqlalchemy_adapter; extra == "runpod"
230
+ Requires-Dist: passlib; extra == "runpod"
231
+ Requires-Dist: pyjwt; extra == "runpod"
232
+ Requires-Dist: aiohttp; extra == "runpod"
233
+ Requires-Dist: anyio; extra == "runpod"
234
+ Requires-Dist: grpcio>=1.63.0; extra == "runpod"
235
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "runpod"
236
+ Requires-Dist: aiosqlite; extra == "runpod"
237
+ Requires-Dist: greenlet; extra == "runpod"
122
238
  Provides-Extra: fluidstack
239
+ Requires-Dist: casbin; extra == "fluidstack"
240
+ Requires-Dist: sqlalchemy_adapter; extra == "fluidstack"
241
+ Requires-Dist: passlib; extra == "fluidstack"
242
+ Requires-Dist: pyjwt; extra == "fluidstack"
243
+ Requires-Dist: aiohttp; extra == "fluidstack"
244
+ Requires-Dist: anyio; extra == "fluidstack"
245
+ Requires-Dist: grpcio>=1.63.0; extra == "fluidstack"
246
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "fluidstack"
247
+ Requires-Dist: aiosqlite; extra == "fluidstack"
248
+ Requires-Dist: greenlet; extra == "fluidstack"
123
249
  Provides-Extra: cudo
124
250
  Requires-Dist: cudo-compute>=0.1.10; extra == "cudo"
251
+ Requires-Dist: casbin; extra == "cudo"
252
+ Requires-Dist: sqlalchemy_adapter; extra == "cudo"
253
+ Requires-Dist: passlib; extra == "cudo"
254
+ Requires-Dist: pyjwt; extra == "cudo"
255
+ Requires-Dist: aiohttp; extra == "cudo"
256
+ Requires-Dist: anyio; extra == "cudo"
257
+ Requires-Dist: grpcio>=1.63.0; extra == "cudo"
258
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "cudo"
259
+ Requires-Dist: aiosqlite; extra == "cudo"
260
+ Requires-Dist: greenlet; extra == "cudo"
125
261
  Provides-Extra: paperspace
262
+ Requires-Dist: casbin; extra == "paperspace"
263
+ Requires-Dist: sqlalchemy_adapter; extra == "paperspace"
264
+ Requires-Dist: passlib; extra == "paperspace"
265
+ Requires-Dist: pyjwt; extra == "paperspace"
266
+ Requires-Dist: aiohttp; extra == "paperspace"
267
+ Requires-Dist: anyio; extra == "paperspace"
268
+ Requires-Dist: grpcio>=1.63.0; extra == "paperspace"
269
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "paperspace"
270
+ Requires-Dist: aiosqlite; extra == "paperspace"
271
+ Requires-Dist: greenlet; extra == "paperspace"
126
272
  Provides-Extra: primeintellect
273
+ Requires-Dist: casbin; extra == "primeintellect"
274
+ Requires-Dist: sqlalchemy_adapter; extra == "primeintellect"
275
+ Requires-Dist: passlib; extra == "primeintellect"
276
+ Requires-Dist: pyjwt; extra == "primeintellect"
277
+ Requires-Dist: aiohttp; extra == "primeintellect"
278
+ Requires-Dist: anyio; extra == "primeintellect"
279
+ Requires-Dist: grpcio>=1.63.0; extra == "primeintellect"
280
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "primeintellect"
281
+ Requires-Dist: aiosqlite; extra == "primeintellect"
282
+ Requires-Dist: greenlet; extra == "primeintellect"
127
283
  Provides-Extra: do
128
284
  Requires-Dist: pydo>=0.3.0; extra == "do"
129
285
  Requires-Dist: azure-core>=1.24.0; extra == "do"
130
286
  Requires-Dist: azure-common; extra == "do"
287
+ Requires-Dist: casbin; extra == "do"
288
+ Requires-Dist: sqlalchemy_adapter; extra == "do"
289
+ Requires-Dist: passlib; extra == "do"
290
+ Requires-Dist: pyjwt; extra == "do"
291
+ Requires-Dist: aiohttp; extra == "do"
292
+ Requires-Dist: anyio; extra == "do"
293
+ Requires-Dist: grpcio>=1.63.0; extra == "do"
294
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "do"
295
+ Requires-Dist: aiosqlite; extra == "do"
296
+ Requires-Dist: greenlet; extra == "do"
131
297
  Provides-Extra: vast
132
298
  Requires-Dist: vastai-sdk>=0.1.12; extra == "vast"
299
+ Requires-Dist: casbin; extra == "vast"
300
+ Requires-Dist: sqlalchemy_adapter; extra == "vast"
301
+ Requires-Dist: passlib; extra == "vast"
302
+ Requires-Dist: pyjwt; extra == "vast"
303
+ Requires-Dist: aiohttp; extra == "vast"
304
+ Requires-Dist: anyio; extra == "vast"
305
+ Requires-Dist: grpcio>=1.63.0; extra == "vast"
306
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "vast"
307
+ Requires-Dist: aiosqlite; extra == "vast"
308
+ Requires-Dist: greenlet; extra == "vast"
133
309
  Provides-Extra: vsphere
134
310
  Requires-Dist: pyvmomi==8.0.1.0.2; extra == "vsphere"
311
+ Requires-Dist: casbin; extra == "vsphere"
312
+ Requires-Dist: sqlalchemy_adapter; extra == "vsphere"
313
+ Requires-Dist: passlib; extra == "vsphere"
314
+ Requires-Dist: pyjwt; extra == "vsphere"
315
+ Requires-Dist: aiohttp; extra == "vsphere"
316
+ Requires-Dist: anyio; extra == "vsphere"
317
+ Requires-Dist: grpcio>=1.63.0; extra == "vsphere"
318
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "vsphere"
319
+ Requires-Dist: aiosqlite; extra == "vsphere"
320
+ Requires-Dist: greenlet; extra == "vsphere"
135
321
  Provides-Extra: nebius
136
322
  Requires-Dist: nebius>=0.2.47; extra == "nebius"
137
323
  Requires-Dist: grpcio>=1.63.0; extra == "nebius"
@@ -140,67 +326,110 @@ Requires-Dist: awscli>=1.27.10; extra == "nebius"
140
326
  Requires-Dist: botocore>=1.29.10; extra == "nebius"
141
327
  Requires-Dist: boto3>=1.26.1; extra == "nebius"
142
328
  Requires-Dist: colorama<0.4.5; extra == "nebius"
329
+ Requires-Dist: casbin; extra == "nebius"
330
+ Requires-Dist: sqlalchemy_adapter; extra == "nebius"
331
+ Requires-Dist: passlib; extra == "nebius"
332
+ Requires-Dist: pyjwt; extra == "nebius"
333
+ Requires-Dist: aiohttp; extra == "nebius"
334
+ Requires-Dist: anyio; extra == "nebius"
335
+ Requires-Dist: grpcio>=1.63.0; extra == "nebius"
336
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "nebius"
337
+ Requires-Dist: aiosqlite; extra == "nebius"
338
+ Requires-Dist: greenlet; extra == "nebius"
143
339
  Provides-Extra: hyperbolic
340
+ Requires-Dist: casbin; extra == "hyperbolic"
341
+ Requires-Dist: sqlalchemy_adapter; extra == "hyperbolic"
342
+ Requires-Dist: passlib; extra == "hyperbolic"
343
+ Requires-Dist: pyjwt; extra == "hyperbolic"
344
+ Requires-Dist: aiohttp; extra == "hyperbolic"
345
+ Requires-Dist: anyio; extra == "hyperbolic"
346
+ Requires-Dist: grpcio>=1.63.0; extra == "hyperbolic"
347
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "hyperbolic"
348
+ Requires-Dist: aiosqlite; extra == "hyperbolic"
349
+ Requires-Dist: greenlet; extra == "hyperbolic"
144
350
  Provides-Extra: seeweb
145
351
  Requires-Dist: ecsapi>=0.2.0; extra == "seeweb"
146
- Provides-Extra: server
147
- Requires-Dist: casbin; extra == "server"
148
- Requires-Dist: sqlalchemy_adapter; extra == "server"
149
- Requires-Dist: passlib; extra == "server"
150
- Requires-Dist: pyjwt; extra == "server"
151
- Requires-Dist: aiohttp; extra == "server"
152
- Requires-Dist: anyio; extra == "server"
153
- Requires-Dist: grpcio>=1.63.0; extra == "server"
154
- Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "server"
155
- Requires-Dist: aiosqlite; extra == "server"
156
- Requires-Dist: greenlet; extra == "server"
352
+ Requires-Dist: casbin; extra == "seeweb"
353
+ Requires-Dist: sqlalchemy_adapter; extra == "seeweb"
354
+ Requires-Dist: passlib; extra == "seeweb"
355
+ Requires-Dist: pyjwt; extra == "seeweb"
356
+ Requires-Dist: aiohttp; extra == "seeweb"
357
+ Requires-Dist: anyio; extra == "seeweb"
358
+ Requires-Dist: grpcio>=1.63.0; extra == "seeweb"
359
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "seeweb"
360
+ Requires-Dist: aiosqlite; extra == "seeweb"
361
+ Requires-Dist: greenlet; extra == "seeweb"
157
362
  Provides-Extra: shadeform
363
+ Requires-Dist: casbin; extra == "shadeform"
364
+ Requires-Dist: sqlalchemy_adapter; extra == "shadeform"
365
+ Requires-Dist: passlib; extra == "shadeform"
366
+ Requires-Dist: pyjwt; extra == "shadeform"
367
+ Requires-Dist: aiohttp; extra == "shadeform"
368
+ Requires-Dist: anyio; extra == "shadeform"
369
+ Requires-Dist: grpcio>=1.63.0; extra == "shadeform"
370
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "shadeform"
371
+ Requires-Dist: aiosqlite; extra == "shadeform"
372
+ Requires-Dist: greenlet; extra == "shadeform"
158
373
  Provides-Extra: all
159
- Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
160
- Requires-Dist: websockets; extra == "all"
161
- Requires-Dist: aiosqlite; extra == "all"
162
- Requires-Dist: boto3>=1.26.1; extra == "all"
163
- Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
164
- Requires-Dist: awscli>=1.27.10; extra == "all"
165
- Requires-Dist: tomli; python_version < "3.11" and extra == "all"
166
- Requires-Dist: runpod>=1.6.1; extra == "all"
167
- Requires-Dist: ibm-cloud-sdk-core; extra == "all"
168
- Requires-Dist: ibm-cos-sdk; extra == "all"
169
- Requires-Dist: botocore>=1.29.10; extra == "all"
374
+ Requires-Dist: ray[default]>=2.6.1; extra == "all"
170
375
  Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
171
- Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
172
- Requires-Dist: passlib; extra == "all"
173
- Requires-Dist: azure-cli>=2.65.0; extra == "all"
174
- Requires-Dist: sqlalchemy_adapter; extra == "all"
175
- Requires-Dist: msgraph-sdk; extra == "all"
376
+ Requires-Dist: cudo-compute>=0.1.10; extra == "all"
377
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
378
+ Requires-Dist: azure-core>=1.24.0; extra == "all"
176
379
  Requires-Dist: azure-identity>=1.19.0; extra == "all"
380
+ Requires-Dist: azure-common; extra == "all"
381
+ Requires-Dist: casbin; extra == "all"
382
+ Requires-Dist: aiohttp; extra == "all"
383
+ Requires-Dist: python-dateutil; extra == "all"
384
+ Requires-Dist: azure-core>=1.31.0; extra == "all"
385
+ Requires-Dist: google-cloud-storage; extra == "all"
386
+ Requires-Dist: msrestazure; extra == "all"
387
+ Requires-Dist: docker; extra == "all"
177
388
  Requires-Dist: grpcio>=1.63.0; extra == "all"
178
- Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
179
- Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
389
+ Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
180
390
  Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
181
- Requires-Dist: casbin; extra == "all"
182
- Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
391
+ Requires-Dist: boto3>=1.26.1; extra == "all"
392
+ Requires-Dist: nebius>=0.2.47; extra == "all"
393
+ Requires-Dist: ibm-cos-sdk; extra == "all"
183
394
  Requires-Dist: pydo>=0.3.0; extra == "all"
184
- Requires-Dist: azure-core>=1.31.0; extra == "all"
395
+ Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
185
396
  Requires-Dist: anyio; extra == "all"
397
+ Requires-Dist: passlib; extra == "all"
398
+ Requires-Dist: aiosqlite; extra == "all"
399
+ Requires-Dist: awscli>=1.27.10; extra == "all"
400
+ Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
186
401
  Requires-Dist: ibm-vpc; extra == "all"
187
- Requires-Dist: aiohttp; extra == "all"
188
- Requires-Dist: azure-common; extra == "all"
189
- Requires-Dist: oci; extra == "all"
190
- Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
191
- Requires-Dist: pyjwt; extra == "all"
402
+ Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
403
+ Requires-Dist: runpod>=1.6.1; extra == "all"
404
+ Requires-Dist: ecsapi>=0.2.0; extra == "all"
405
+ Requires-Dist: tomli; python_version < "3.11" and extra == "all"
406
+ Requires-Dist: websockets; extra == "all"
407
+ Requires-Dist: botocore>=1.29.10; extra == "all"
408
+ Requires-Dist: azure-cli>=2.65.0; extra == "all"
409
+ Requires-Dist: msgraph-sdk; extra == "all"
410
+ Requires-Dist: ibm-cloud-sdk-core; extra == "all"
192
411
  Requires-Dist: colorama<0.4.5; extra == "all"
193
- Requires-Dist: cudo-compute>=0.1.10; extra == "all"
194
- Requires-Dist: msrestazure; extra == "all"
412
+ Requires-Dist: pyjwt; extra == "all"
413
+ Requires-Dist: oci; extra == "all"
414
+ Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
415
+ Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
416
+ Requires-Dist: sqlalchemy_adapter; extra == "all"
195
417
  Requires-Dist: greenlet; extra == "all"
196
- Requires-Dist: azure-core>=1.24.0; extra == "all"
197
- Requires-Dist: ray[default]>=2.6.1; extra == "all"
198
- Requires-Dist: ecsapi>=0.2.0; extra == "all"
199
- Requires-Dist: google-cloud-storage; extra == "all"
200
- Requires-Dist: nebius>=0.2.47; extra == "all"
201
- Requires-Dist: python-dateutil; extra == "all"
202
- Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
203
- Requires-Dist: docker; extra == "all"
418
+ Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
419
+ Provides-Extra: remote
420
+ Requires-Dist: grpcio>=1.63.0; extra == "remote"
421
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "remote"
422
+ Provides-Extra: server
423
+ Requires-Dist: casbin; extra == "server"
424
+ Requires-Dist: sqlalchemy_adapter; extra == "server"
425
+ Requires-Dist: passlib; extra == "server"
426
+ Requires-Dist: pyjwt; extra == "server"
427
+ Requires-Dist: aiohttp; extra == "server"
428
+ Requires-Dist: anyio; extra == "server"
429
+ Requires-Dist: grpcio>=1.63.0; extra == "server"
430
+ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "server"
431
+ Requires-Dist: aiosqlite; extra == "server"
432
+ Requires-Dist: greenlet; extra == "server"
204
433
  Dynamic: author
205
434
  Dynamic: classifier
206
435
  Dynamic: description
@@ -1,6 +1,6 @@
1
- sky/__init__.py,sha256=Hyx3cKLPSEvS-s5nhMRGldwxUHrhA_oI88dTRzB-wS8,6759
1
+ sky/__init__.py,sha256=a9h6DkxiSlwWvbJj22AlcBm24IFx9TMVEY4zV38YLzg,6759
2
2
  sky/admin_policy.py,sha256=XdcJnYqmude-LGGop-8U-FeiJcqtfYsYtIy4rmoCJnM,9799
3
- sky/authentication.py,sha256=GSwh3wfodBqn8FtBcrqSw2UZZEwW8dKqXN3ubFAiqBw,25879
3
+ sky/authentication.py,sha256=BK5Fkuk3EmS4DwCrxI_8a4SQHUNFYu9GztWSzPissSA,20123
4
4
  sky/check.py,sha256=hBDTkiADC3HFfO6brZV819FVWcdOs3aiuhB6x6mY4Q4,29728
5
5
  sky/cli.py,sha256=VXIZryeTtJPYpPTBKymVPmuOCyh8knfWrq-qnkr6R-4,178
6
6
  sky/cloud_stores.py,sha256=Ln5GBpel-sEs7rVx7bBrMkfLwA_bctI05Rox2uoz7Lo,26388
@@ -38,7 +38,7 @@ sky/adaptors/vast.py,sha256=tpvmHi7IkQNzbbHVkeo04kUSajoEpSzXr2XgeO_I1LU,695
38
38
  sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
39
39
  sky/backends/__init__.py,sha256=l1xXpkzPFMma0ZkT4GzVMu7uvgS3AsECg6zLc0S3JHQ,702
40
40
  sky/backends/backend.py,sha256=zmF6TuKtUwzsP1hq0TI9nuuUySlPc9sgeW6F4GC8Ckk,8352
41
- sky/backends/backend_utils.py,sha256=cWR5Q0ZAsXOt6xDGhGAFIX2z6mhMnDFp0nYP6rA44Iw,178964
41
+ sky/backends/backend_utils.py,sha256=sCnIJO52VowWcnQY1mmXyF-bN6avkHAHWXgNJ8RNC8I,179015
42
42
  sky/backends/cloud_vm_ray_backend.py,sha256=dfBbsOpecR4u82DDfqQjN5FYNqOUhIST8QnvGbAfmoE,309163
43
43
  sky/backends/docker_utils.py,sha256=_EhM6NStZDAwcegppQqExaB5iuSn1qL4xFFUqXAz2Uk,8392
44
44
  sky/backends/local_docker_backend.py,sha256=ncc8-WJrMRnqPl9fzvGr-nftIz7tTzKtUi-p_z_nH60,17366
@@ -55,7 +55,7 @@ sky/catalog/fluidstack_catalog.py,sha256=387bOTlR3Bzj07uT1wvw3VSw3fVACQUi1hFoz4A
55
55
  sky/catalog/gcp_catalog.py,sha256=6LfpdBGMutc9lDfmpoKMCB8YaYy3KKcWOm7Xg4bkAkk,26514
56
56
  sky/catalog/hyperbolic_catalog.py,sha256=vMs0HcTyFLBNpuDNdWYFwAIfnKh5TT34mY6CRRPHTFc,4946
57
57
  sky/catalog/ibm_catalog.py,sha256=cU-PmiKyJY3ZCVKJzCaT_ClxJx785yZEg9JlK8vlWfc,4734
58
- sky/catalog/kubernetes_catalog.py,sha256=eeiD8_k81RfBBQQIg3F8hmZL3OOhw4sAVNoWxjv8Rno,13988
58
+ sky/catalog/kubernetes_catalog.py,sha256=AwUtquWHJTo1KQuG0ERaG56zc8JMs8ctRdn518Es2nY,14165
59
59
  sky/catalog/lambda_catalog.py,sha256=M5g23ILZo55CzSdNbEfB4AzAwvs6bPaJPEsMDGuGoqI,5543
60
60
  sky/catalog/nebius_catalog.py,sha256=1UQIfj747IsS5ppW8t_oorD8x41Ma-mr_qOn0TrV1WE,4691
61
61
  sky/catalog/oci_catalog.py,sha256=5SzhG7umqlWpBoEOYNDBhQFgLIF0H4gtoDwfZo7MkTI,8821
@@ -90,7 +90,7 @@ sky/client/sdk.py,sha256=dQucC3YZ9v_iwKqN_nVc0pL1AbpsLvleY33ydY49XGk,108271
90
90
  sky/client/sdk_async.py,sha256=8G_E9Dn4d80rV-wxRH4zZUXZGAm6rLw3C8PI07fXwwQ,31106
91
91
  sky/client/service_account_auth.py,sha256=5jXk0G6ufuW-SHCO7BEHQeTO0_2a8KfFmA63auXFRj4,1529
92
92
  sky/client/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
- sky/client/cli/command.py,sha256=LslOSk2ImK0IWBM1Dsd7xEX7S4xXW9wwCxkcCHrxpFc,253308
93
+ sky/client/cli/command.py,sha256=kEwj0b7zbLTeJaditu0MXyNu1SosxiGcCGa1MtfRrnw,253296
94
94
  sky/client/cli/deprecation_utils.py,sha256=H_d5UyF2CekEoThduAzt5cihBO8hwKYMu0-Wqfbjv5E,3370
95
95
  sky/client/cli/flags.py,sha256=lLXHooU4HEslbHJuGAiCrKYkJZx99hAKaJbstw7s1bc,12136
96
96
  sky/client/cli/table_utils.py,sha256=HT_y__9_tZLKJ0aJu-hh67cu3NXfWDoiHir5fTmWaDw,10156
@@ -123,17 +123,19 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
123
123
  sky/clouds/utils/gcp_utils.py,sha256=09MF4Vx0EW7S-GXGpyxpl2aQlHrqeu9ioV0nyionAyk,9890
124
124
  sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
125
125
  sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
126
- sky/dashboard/out/404.html,sha256=geTbhs5hr8Xx6VUC8yLTB0pBkUTRa4-oXWvCWketok4,1423
127
- sky/dashboard/out/clusters.html,sha256=PcCIwtDS2YyvJfhjbrhDsXuVPfPz0t08gC29g7B3FKg,1418
128
- sky/dashboard/out/config.html,sha256=a0ycAKmIApgLeGG3iPorTfXMd-iFW54we8eUGYXAgck,1414
126
+ sky/dashboard/out/404.html,sha256=Gw6BM2Z59XcajbWNXY8S4TcHjLbhZRaeRJqDqofUFF4,1423
127
+ sky/dashboard/out/clusters.html,sha256=NPuD29K1kFHjmu6Ahhem57h0_889cK9vlwE73VfB3rI,1418
128
+ sky/dashboard/out/config.html,sha256=SzTVyQqcm8EuzrxlNbgo4-paSO40Isuma14cv31uL-g,1414
129
129
  sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
130
- sky/dashboard/out/index.html,sha256=LgAjS4oYMttufwnGuEI0XdTKG1Lu0cwbhQFVd4WLLXo,1407
131
- sky/dashboard/out/infra.html,sha256=whyWrKBimgl5riv1LyfYkZ2Zx0pGYOdNkqyE4VHhoSU,1412
132
- sky/dashboard/out/jobs.html,sha256=Xxqjgkr1VKxpf_VUg-5437gplQmhHqUx9jMq95TUXW0,1410
130
+ sky/dashboard/out/index.html,sha256=yqtHv1xUxmRcIl5YKnuVJwih6ltHIQse-tZoCFc5HyQ,1407
131
+ sky/dashboard/out/infra.html,sha256=BhXAiMKU3bnkpDFiMGBMISnUPk3-ggrY97wJIogUWIE,1412
132
+ sky/dashboard/out/jobs.html,sha256=cRyDqjsROlegxRKhJ8Jz5GXXh47kRLqSuDUt47M6-m8,1410
133
133
  sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
134
- sky/dashboard/out/users.html,sha256=00vcQQO6uwKHGFaaai7EqTdFn1U1_qKbbbip7YE2XkI,1412
135
- sky/dashboard/out/volumes.html,sha256=oMWgtYTavDltUKT2MvTgaf6mqaNbgKX0lokscV3x9GA,1416
136
- sky/dashboard/out/workspaces.html,sha256=C-JDlZVb6aavnacPGmnvXZM4fCASPU1VIjw-bXT3f4o,1422
134
+ sky/dashboard/out/users.html,sha256=kH3sXTqtiEo-4GGBSFuD_zP7bxazUBb1iEljfhzumC4,1412
135
+ sky/dashboard/out/volumes.html,sha256=s4LNanIQTXVY8Wu1UfXYKnW_xTPOh9wP0UKSshr1X-A,1416
136
+ sky/dashboard/out/workspaces.html,sha256=ZAbYkFcvt_tbj4210yWGn0UjXcYI7ZQBezqUmHhCv-g,1422
137
+ sky/dashboard/out/_next/static/3xvBA5BSGbiQ87tVmfbpY/_buildManifest.js,sha256=1ombZKzLAegWk-mEKBFMtiwI-xk8sWY2rYidGQBNj7Y,2394
138
+ sky/dashboard/out/_next/static/3xvBA5BSGbiQ87tVmfbpY/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
137
139
  sky/dashboard/out/_next/static/chunks/1121-d0782b9251f0fcd3.js,sha256=jIvnDxaTleAz3HdZK9-RScSB0ZMg8-D63KQmn8avaHI,8883
138
140
  sky/dashboard/out/_next/static/chunks/1141-3b40c39626f99c89.js,sha256=M5vM2c9SRPEly-CQj0Vj7wJzyFSyuALDik9KFLXWmec,18285
139
141
  sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
@@ -169,7 +171,7 @@ sky/dashboard/out/_next/static/chunks/framework-cf60a09ccd051a10.js,sha256=_Qbam
169
171
  sky/dashboard/out/_next/static/chunks/main-app-587214043926b3cc.js,sha256=t7glRfataAjNw691Wni-ZU4a3BsygRzPKoI8NOm-lsY,116244
170
172
  sky/dashboard/out/_next/static/chunks/main-f15ccb73239a3bf1.js,sha256=jxOPLDVX3rkMc_jvGx2a-N2v6mvfOa8O6V0o-sLT0tI,110208
171
173
  sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
172
- sky/dashboard/out/_next/static/chunks/webpack-66f23594d38c7f16.js,sha256=-I_5dIeLkBzeXUkajoN-Bp72fpfSGN3b4cefd134guY,4770
174
+ sky/dashboard/out/_next/static/chunks/webpack-3c431f6c9086e487.js,sha256=zfNgAId8Pn7_z_JGOK8_AgEsEMD8P0R7hP_cSg3bPuk,4770
173
175
  sky/dashboard/out/_next/static/chunks/pages/_app-ce361c6959bc2001.js,sha256=mllo4Yasw61zRtEO49uE_MrAutg9josSJShD0DNSjf0,95518
174
176
  sky/dashboard/out/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
175
177
  sky/dashboard/out/_next/static/chunks/pages/clusters-2f61f65487f6d8ff.js,sha256=oo_EAAsi1TLXO-art_64PTCZjakwl-7wVUZnB3-SJK8,869
@@ -188,16 +190,14 @@ sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-bc979970c247d8f3.j
188
190
  sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
189
191
  sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-e8688c35c06f0ac5.js,sha256=TVmk0pD0iszL39u2Ru56HLEFFLO648NeT2KbEcW5X5o,1495
190
192
  sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
191
- sky/dashboard/out/_next/static/pbgtEUoCUdmJyLHjgln5A/_buildManifest.js,sha256=1ombZKzLAegWk-mEKBFMtiwI-xk8sWY2rYidGQBNj7Y,2394
192
- sky/dashboard/out/_next/static/pbgtEUoCUdmJyLHjgln5A/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
193
- sky/dashboard/out/clusters/[cluster].html,sha256=w4CGnJwobm8_LcpIL58wrTQCsHecw-q0yEXwZIzOn-A,2937
194
- sky/dashboard/out/clusters/[cluster]/[job].html,sha256=YXW5FPPJuB0RThL4rBaHCx2ZfsbjWm1fpSxIYU6F0XQ,2073
195
- sky/dashboard/out/infra/[context].html,sha256=8S03UEnP2QodWIJSkugz6644yh4wExMa-JmbFhQl7Rs,1436
196
- sky/dashboard/out/jobs/[job].html,sha256=VbWql8Mf1WkNCUoh7wd67lyiMqtPFdIgxP5oVUvjqxc,2305
197
- sky/dashboard/out/jobs/pools/[pool].html,sha256=5tQOY3ak6__7wDO1K91U0ydrMzrhxCjdm5pDebqGx6w,2143
193
+ sky/dashboard/out/clusters/[cluster].html,sha256=gt4NShfXJKIK3xDaSfD3WCG3xinjvDXaDRsETRQ07qo,2937
194
+ sky/dashboard/out/clusters/[cluster]/[job].html,sha256=BOaj5uR4P2sG4j5lN5xZTujqn1f5IB2q2KR-nH7H2WE,2073
195
+ sky/dashboard/out/infra/[context].html,sha256=sgLOc8kXPS36iY97hCZ1Rn6SFEGE2R3VYvAGs3e29Qo,1436
196
+ sky/dashboard/out/jobs/[job].html,sha256=Hbtgm3U4TxHSO50Xd7kPzZgvJE6uB3tRhQxaD-8qJX4,2305
197
+ sky/dashboard/out/jobs/pools/[pool].html,sha256=z-K0ZOcNNlCJxCgioXfSW111axD4wmgONf27y9vgz9Y,2143
198
198
  sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
199
- sky/dashboard/out/workspace/new.html,sha256=ojzaOKXXOX3CqrnN52hVGwDxx3go9-J9t6-j4fLotVk,1428
200
- sky/dashboard/out/workspaces/[name].html,sha256=3NeDghH2OweZ5sMxZUFwMeu3FxXCa_DqxWQ3FoqigpY,2759
199
+ sky/dashboard/out/workspace/new.html,sha256=wNAiosCBM5plZTOSBo-CQ5wl0br2XdUo2c3qwTbSybk,1428
200
+ sky/dashboard/out/workspaces/[name].html,sha256=JHtrY-zXUoEQsNtFqEafu_9dJji9jzzeXcQ6Q16rWiw,2759
201
201
  sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
202
202
  sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
203
203
  sky/data/data_utils.py,sha256=AjEA_JRjo9NBMlv-Lq5iV4lBED_YZ1VqBR9pG6fGVWE,35179
@@ -254,7 +254,7 @@ sky/provision/do/utils.py,sha256=VY9Be4IWpnSChZR4mlFLX8FhyZTsRu8m7kFrVFUm5eI,104
254
254
  sky/provision/fluidstack/__init__.py,sha256=h2df4JHCHtBMYZwtC05WM0VnLbAsRO-T3GFTf6NpY04,592
255
255
  sky/provision/fluidstack/config.py,sha256=hDqesKEVjIhXLTWej3fDdpbHtKBXoybxFGgC6T8U5uo,326
256
256
  sky/provision/fluidstack/fluidstack_utils.py,sha256=NdhQcwhIPGT21g7lQR-t6j-1zTA_1ZgOhh1oR7rmV4A,5883
257
- sky/provision/fluidstack/instance.py,sha256=Ci5yvNGCYPl7z3rREy8BW5iYa4xTAKsAwHVEbVECa0U,13984
257
+ sky/provision/fluidstack/instance.py,sha256=TZB68jehgK-VEzhI6hxPu6lTqPU3ym0eiyT1a9PprsA,13984
258
258
  sky/provision/gcp/__init__.py,sha256=OoV5L-FOx3rdfgkIEu3wrnefybc734RKIldsKaC2Qnc,596
259
259
  sky/provision/gcp/config.py,sha256=7wlIRztDdARXEKKxUKI0HCVewIjOEP339h4nh7KG4GY,45240
260
260
  sky/provision/gcp/constants.py,sha256=gb1DxFBvJTfMjJkR-GtyD-vFGSriDTr7kRVG9F138wc,16001
@@ -310,7 +310,7 @@ sky/provision/scp/config.py,sha256=8v5dyXC7PPyLhnS5p3tK4B6xufEmUmYFZ7LPHKsS1Zw,2
310
310
  sky/provision/scp/instance.py,sha256=22kwBma9RyC8yCDVm62TaSSreRAflv3BvaD3NWvNpSs,19341
311
311
  sky/provision/seeweb/__init__.py,sha256=5X91Xj_uvSAQxodo22ucdySlghLrCP8MsnJhaaRs7OE,558
312
312
  sky/provision/seeweb/config.py,sha256=akaKL7A92blSTAekURUYAapiL9a569xVQ28iRLGwcn8,333
313
- sky/provision/seeweb/instance.py,sha256=auiluvPwU4x7BnUne2JozW7h0q72IVSo8YsnWwBIN1M,31940
313
+ sky/provision/seeweb/instance.py,sha256=UeklC8m35AzP7Ytzvd0Sv5SCbxTr9lr1ZdpbQyos_rQ,31946
314
314
  sky/provision/shadeform/__init__.py,sha256=Rk1X4al6D8Q5o9Csb3R50mbK1t6lIsoQqApFXUD4FZY,575
315
315
  sky/provision/shadeform/config.py,sha256=YvgyecOA8c2drILdde-IGzgfLy5gUc68F2xm6iylZKA,325
316
316
  sky/provision/shadeform/instance.py,sha256=rSpwzEN8E4FCdtpJMXPijxVQCrvTb35a5u5bJ3nGYlI,13415
@@ -378,7 +378,7 @@ sky/serve/replica_managers.py,sha256=U6B-9i99_4lgebw1PkXJKFJ86knjfPrpppY2xvJaLus
378
378
  sky/serve/serve_rpc_utils.py,sha256=6MTwPRt7h0pVnOthO4JUs1UEBbCLZ-prd-Pzjy_QPmw,7116
379
379
  sky/serve/serve_state.py,sha256=pRtxWBagIUUvgrKNZ51-9xfW0hadSGILIMzVRzm_0IU,33321
380
380
  sky/serve/serve_utils.py,sha256=G-enI29qHA-hLzej3G7AibSqv6lPy6PVC_w0Mm2colU,70833
381
- sky/serve/service.py,sha256=IYyMGYIu_TZtcjtao67H_Qm9WX358AiTOiHJbpcl5eQ,18365
381
+ sky/serve/service.py,sha256=J3KeyHfMJaoTszHRQ6mhgKNEi-UBUBNr9F8WMq_NF4M,18363
382
382
  sky/serve/service_spec.py,sha256=5AjPXjtqc4e1CJWHiH998suRJMkHcQHi4mUaX52_Mhs,24800
383
383
  sky/serve/spot_placer.py,sha256=auRlYZNg8uIW-lxiirxpDP-iIaJtkrhesm6OGMgwPq4,11288
384
384
  sky/serve/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -396,9 +396,9 @@ sky/server/constants.py,sha256=XkwSIXR0wSJhopbtGwxYTHJZWYQ2UmpgrgZ1YQRB8SI,2615
396
396
  sky/server/daemons.py,sha256=XQdqRMVyxyqS9fY2HLqW_cxVR6qgqoQ7irPvRYWvG7E,9092
397
397
  sky/server/metrics.py,sha256=8mTyD-zo2gyAJSPJyCtTR8oImeFJ2K-sAdlje5Bf5U4,5781
398
398
  sky/server/rest.py,sha256=Op7WNtfNey3XnBLMBx7S4KryiBhL9UCYhMxQgVo1Ybw,14813
399
- sky/server/server.py,sha256=QMV2R5j0XO-7cEHNbfCsrhc2NteqT4hkrEi3oc66jac,85992
399
+ sky/server/server.py,sha256=yRK3v-uzFv_t4EG8i9PKXPYuo6-vjBeglMaGHMVTmoA,85943
400
400
  sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
401
- sky/server/stream_utils.py,sha256=V_sZWx9ppPHo4YuoN21zT6asttQlTnF2hb3FgmfpIMY,12136
401
+ sky/server/stream_utils.py,sha256=L3McETsgit4iONYEvHR7Qzylk7OtMzmnxoS-L0vLMzI,12539
402
402
  sky/server/uvicorn.py,sha256=lJROnpJqoZr59zGwYa_pUniV7rEwmZn0PV4t-YYY-yo,11832
403
403
  sky/server/versions.py,sha256=3atZzUa7y1XeKNcrfVxKWAo_5ZyCOnbY7DKpIqed7Do,10011
404
404
  sky/server/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -411,9 +411,9 @@ sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
411
411
  sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
412
412
  sky/server/requests/executor.py,sha256=aks5un_Ezrl5r2WGjvMb5DwUebyzcb_c9lGDBxuOPqg,36699
413
413
  sky/server/requests/payloads.py,sha256=nhOGOk-AZApLQBdKLRAtQ3MF7WkJxBA-ZAuF9nMsCxk,28093
414
- sky/server/requests/preconditions.py,sha256=8Hm1IDG0jF1mg0rr82SsLEHkpWrbQgwBAy77M8U34iQ,7165
414
+ sky/server/requests/preconditions.py,sha256=y8HxFzWAkhSOPmHL6iWY2hSPlu_ORy5aB0X1EVA7DPA,7165
415
415
  sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
416
- sky/server/requests/requests.py,sha256=EwIt6Xdz5I6B6-opVdb98jAo9e5V_BHDNGx-IzeU6rk,35353
416
+ sky/server/requests/requests.py,sha256=1a1yL6AuaHcqBqEa7RhTM2SXKVA3NgsnbMAD2Qy4a8Y,35821
417
417
  sky/server/requests/threads.py,sha256=AwzbcoeLDz5RnSi0jJSD3u4lGDiYkCaa1qDvPkUqeMI,4131
418
418
  sky/server/requests/queues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
419
419
  sky/server/requests/queues/local_queue.py,sha256=X6VkBiUmgd_kfqIK1hCtMWG1b8GiZbY70TBiBR6c6GY,416
@@ -423,7 +423,7 @@ sky/server/requests/serializers/decoders.py,sha256=4V3muIPH_QU_CfGyoHD99IXuJbKZK
423
423
  sky/server/requests/serializers/encoders.py,sha256=kEGUqUDx5mpc2DBxhzcGrSP325R1aMPg5NXUVScXfUs,8425
424
424
  sky/setup_files/MANIFEST.in,sha256=4gbgHHwSdP6BbMJv5XOt-2K6wUVWF_T9CGsdESvh918,776
425
425
  sky/setup_files/alembic.ini,sha256=854_UKvCaFmZ8vI16tSHbGgP9IMFQ42Td6c9Zmn2Oxs,5079
426
- sky/setup_files/dependencies.py,sha256=fRx8VgQATr9VmMVoLepBXdC13D7cEUguDxgh1RO3adU,8962
426
+ sky/setup_files/dependencies.py,sha256=CIp265rhS4BRH6CAwWyQoZMZe7H-DXXEALsh3zaII0M,9442
427
427
  sky/setup_files/setup.py,sha256=4M8u9Y4wwmFCJk-EfsnMWtpNq7ynzqbjdVTKW3w5GXA,7820
428
428
  sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
429
429
  sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -505,9 +505,10 @@ sky/utils/admin_policy_utils.py,sha256=VkE3FGzv5a7KnRO0R1PX0buJ274vF__n1xgXJ_9yk
505
505
  sky/utils/annotations.py,sha256=No49yFuNIGtFgxU1bmBh2REx_Yn08o7Is-c56QynDIs,1910
506
506
  sky/utils/asyncio_utils.py,sha256=5iydD0HIHZLMAGk-uD3VyweEUsi3qDy1LHuNjHdsUC4,440
507
507
  sky/utils/atomic.py,sha256=vrw-7XCnckF0xCx-ttamao7evPdGtVsnjaTtgMlBXIE,1280
508
+ sky/utils/auth_utils.py,sha256=1ugVMGEglEyTsvtZJtv06eNewGudvaWd152cShkUyuI,6238
508
509
  sky/utils/benchmark_utils.py,sha256=vBqvgS-7XBat9N4UvtmxXS70i2EQUa4BUv4fsF8g58A,1635
509
510
  sky/utils/cluster_utils.py,sha256=PxVIVCBPA8qKkKvrF7bImDC1jhUZeJDADYtV-ELTZXE,15527
510
- sky/utils/command_runner.py,sha256=Q30y89HaxMUZ_57h1TAWxhI3c6V_QGwL0yuvkZ3eR48,51241
511
+ sky/utils/command_runner.py,sha256=XFXUi_ErcsBt4AGmjZq7aoBLW5Frl-_F8xC6XQEYguw,51404
511
512
  sky/utils/command_runner.pyi,sha256=FE8lFyxsh6528uSeSS38yk9Yu9HSJ8LFJT0ylMWNR6k,10618
512
513
  sky/utils/common.py,sha256=SS-NXSqMD34GeUSxMJuZ-Kce_2yPxiPdXhQoNQR5Lho,2834
513
514
  sky/utils/common_utils.py,sha256=3p-x8pU5tAFxJ95eW-KpY-aRPTGqL6ZvMbUO_iSiPVM,39147
@@ -524,7 +525,7 @@ sky/utils/git_clone.sh,sha256=hXOz7i1MCYl2IwMdKnFYhinhh8Jaf5a1Qwd65cePQYc,17790
524
525
  sky/utils/infra_utils.py,sha256=WkkB4Hj6CX-3eV029fPYqydNVyFZ8ZwRAVA_GCLJ9QU,6981
525
526
  sky/utils/kubernetes_enums.py,sha256=C2AZLqUvYOUg9ligoV2IV8xIvKa34p3ZaoM_1HIWdRs,1053
526
527
  sky/utils/lock_events.py,sha256=qX4-Nlzm4S9bTD4e2eg2Vgn4AOlTjy7rhzLS_0B1IdA,2827
527
- sky/utils/locks.py,sha256=cRq8bIc33CJG7Z-TtsgrhgTlYdT_w8NGcFqeqIx1dh0,12851
528
+ sky/utils/locks.py,sha256=iVQIkUY2I1DiirWdcmiAYllvGgQggWSJ0FtKxojv3ZY,12981
528
529
  sky/utils/log_utils.py,sha256=RB5n58CAWmVepd_RAf-mjL2EViBFbtkPtSB5jJT6pLY,29684
529
530
  sky/utils/message_utils.py,sha256=zi2Z7PEX6Xq_zvho-aEZe_J7UvpKOLdVDdGAcipRQPU,2662
530
531
  sky/utils/perf_utils.py,sha256=HxmTmVQc5DSfqJwISPxdVLWmUxNZHbibJg1kKVI-1Cg,700
@@ -577,9 +578,9 @@ sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
577
578
  sky/workspaces/core.py,sha256=kRrdh-8MhX1953pML1B_DoStnDuNrsmHcZlnWoAxVo0,27218
578
579
  sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
579
580
  sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
580
- skypilot_nightly-1.0.0.dev20251016.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
581
- skypilot_nightly-1.0.0.dev20251016.dist-info/METADATA,sha256=SOJeKlMVeKxQfJwNaz8T94iY-Ctw_q-zMXVSgnTMnkI,20779
582
- skypilot_nightly-1.0.0.dev20251016.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
583
- skypilot_nightly-1.0.0.dev20251016.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
584
- skypilot_nightly-1.0.0.dev20251016.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
585
- skypilot_nightly-1.0.0.dev20251016.dist-info/RECORD,,
581
+ skypilot_nightly-1.0.0.dev20251017.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
582
+ skypilot_nightly-1.0.0.dev20251017.dist-info/METADATA,sha256=xgqbfid5OhEvxH6IEpLL9sZa3lx4jY4MQQ02vsYIMnM,31200
583
+ skypilot_nightly-1.0.0.dev20251017.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
584
+ skypilot_nightly-1.0.0.dev20251017.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
585
+ skypilot_nightly-1.0.0.dev20251017.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
586
+ skypilot_nightly-1.0.0.dev20251017.dist-info/RECORD,,