skypilot-nightly 1.0.0.dev20250723__py3-none-any.whl → 1.0.0.dev20250724__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/client/cli/command.py +6 -5
- sky/client/sdk.pyi +296 -0
- sky/clouds/utils/oci_utils.py +16 -40
- sky/dashboard/out/404.html +1 -1
- sky/dashboard/out/_next/static/chunks/{webpack-a305898dc479711e.js → webpack-b6447da22305b14a.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.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/exceptions.py +8 -0
- sky/logs/__init__.py +4 -0
- sky/logs/agent.py +14 -0
- sky/logs/aws.py +276 -0
- sky/server/common.py +5 -1
- sky/server/requests/payloads.py +20 -4
- sky/server/rest.py +6 -0
- sky/server/server.py +2 -1
- sky/utils/config_utils.py +6 -4
- sky/utils/rich_utils.py +2 -3
- sky/utils/schemas.py +54 -22
- {skypilot_nightly-1.0.0.dev20250723.dist-info → skypilot_nightly-1.0.0.dev20250724.dist-info}/METADATA +1 -1
- {skypilot_nightly-1.0.0.dev20250723.dist-info → skypilot_nightly-1.0.0.dev20250724.dist-info}/RECORD +39 -37
- /sky/dashboard/out/_next/static/{mym3Ciwp-zqU7ZpOLGnrW → BURfWrKsQk9psMPv0OXrh}/_buildManifest.js +0 -0
- /sky/dashboard/out/_next/static/{mym3Ciwp-zqU7ZpOLGnrW → BURfWrKsQk9psMPv0OXrh}/_ssgManifest.js +0 -0
- {skypilot_nightly-1.0.0.dev20250723.dist-info → skypilot_nightly-1.0.0.dev20250724.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250723.dist-info → skypilot_nightly-1.0.0.dev20250724.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250723.dist-info → skypilot_nightly-1.0.0.dev20250724.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250723.dist-info → skypilot_nightly-1.0.0.dev20250724.dist-info}/top_level.txt +0 -0
sky/utils/schemas.py
CHANGED
|
@@ -1323,27 +1323,33 @@ def get_config_schema():
|
|
|
1323
1323
|
'oci': {
|
|
1324
1324
|
'type': 'object',
|
|
1325
1325
|
'required': [],
|
|
1326
|
-
'properties': {
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
'
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1326
|
+
'properties': {
|
|
1327
|
+
'region_configs': {
|
|
1328
|
+
'type': 'object',
|
|
1329
|
+
'required': [],
|
|
1330
|
+
'properties': {},
|
|
1331
|
+
# Properties are either 'default' or a region name.
|
|
1332
|
+
'additionalProperties': {
|
|
1333
|
+
'type': 'object',
|
|
1334
|
+
'required': [],
|
|
1335
|
+
'additionalProperties': False,
|
|
1336
|
+
'properties': {
|
|
1337
|
+
'compartment_ocid': {
|
|
1338
|
+
'type': 'string',
|
|
1339
|
+
},
|
|
1340
|
+
'image_tag_general': {
|
|
1341
|
+
'type': 'string',
|
|
1342
|
+
},
|
|
1343
|
+
'image_tag_gpu': {
|
|
1344
|
+
'type': 'string',
|
|
1345
|
+
},
|
|
1346
|
+
'vcn_ocid': {
|
|
1347
|
+
'type': 'string',
|
|
1348
|
+
},
|
|
1349
|
+
'vcn_subnet': {
|
|
1350
|
+
'type': 'string',
|
|
1351
|
+
},
|
|
1352
|
+
}
|
|
1347
1353
|
},
|
|
1348
1354
|
}
|
|
1349
1355
|
},
|
|
@@ -1615,7 +1621,7 @@ def get_config_schema():
|
|
|
1615
1621
|
'properties': {
|
|
1616
1622
|
'store': {
|
|
1617
1623
|
'type': 'string',
|
|
1618
|
-
'case_insensitive_enum': ['gcp'],
|
|
1624
|
+
'case_insensitive_enum': ['gcp', 'aws'],
|
|
1619
1625
|
},
|
|
1620
1626
|
'gcp': {
|
|
1621
1627
|
'type': 'object',
|
|
@@ -1634,6 +1640,32 @@ def get_config_schema():
|
|
|
1634
1640
|
},
|
|
1635
1641
|
},
|
|
1636
1642
|
},
|
|
1643
|
+
'aws': {
|
|
1644
|
+
'type': 'object',
|
|
1645
|
+
'properties': {
|
|
1646
|
+
'region': {
|
|
1647
|
+
'type': 'string',
|
|
1648
|
+
},
|
|
1649
|
+
'credentials_file': {
|
|
1650
|
+
'type': 'string',
|
|
1651
|
+
},
|
|
1652
|
+
'log_group_name': {
|
|
1653
|
+
'type': 'string',
|
|
1654
|
+
},
|
|
1655
|
+
'log_stream_prefix': {
|
|
1656
|
+
'type': 'string',
|
|
1657
|
+
},
|
|
1658
|
+
'auto_create_group': {
|
|
1659
|
+
'type': 'boolean',
|
|
1660
|
+
},
|
|
1661
|
+
'additional_tags': {
|
|
1662
|
+
'type': 'object',
|
|
1663
|
+
'additionalProperties': {
|
|
1664
|
+
'type': 'string',
|
|
1665
|
+
},
|
|
1666
|
+
},
|
|
1667
|
+
},
|
|
1668
|
+
},
|
|
1637
1669
|
},
|
|
1638
1670
|
}
|
|
1639
1671
|
|
{skypilot_nightly-1.0.0.dev20250723.dist-info → skypilot_nightly-1.0.0.dev20250724.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sky/__init__.py,sha256=
|
|
1
|
+
sky/__init__.py,sha256=PkBsu78bRCZuyXh7zB8oioWmZjhhrAWuQBFQ0PX19iA,6535
|
|
2
2
|
sky/admin_policy.py,sha256=BeSowGnWfDj58ALiNf3cc2N4gMQWzjO6aXnX7vaqYhk,9782
|
|
3
3
|
sky/authentication.py,sha256=V7zGSV7bqcAKC_EGOOS0KhJ01ZFLnme0WnjLFO7zavs,25603
|
|
4
4
|
sky/check.py,sha256=R0pFsTq2v-wr3NFePlX9DmDhsbvWEoFJAXsys3pUmT4,30338
|
|
@@ -6,7 +6,7 @@ sky/cli.py,sha256=VXIZryeTtJPYpPTBKymVPmuOCyh8knfWrq-qnkr6R-4,178
|
|
|
6
6
|
sky/cloud_stores.py,sha256=Ln5GBpel-sEs7rVx7bBrMkfLwA_bctI05Rox2uoz7Lo,26388
|
|
7
7
|
sky/core.py,sha256=k_3QkqJecFpwLSatM52lD-IitVdjUIXn33EPJWcQfWE,56628
|
|
8
8
|
sky/dag.py,sha256=5MFXlP43y9U54zxfYGhVyBiWEInoFFlt_zJ7ASJntXw,3889
|
|
9
|
-
sky/exceptions.py,sha256=
|
|
9
|
+
sky/exceptions.py,sha256=0saA9jj5etJiHjaX6PDTdFj3E3JtC3Ue-irE9OlrrEg,19454
|
|
10
10
|
sky/execution.py,sha256=sZf0306FCKAo1FS7Vg2yCADSr5XHsODYwESHhwdVTjo,33439
|
|
11
11
|
sky/global_user_state.py,sha256=vsTFuWIHCVXYcb7CS1olz2n6Ik5shOF5_8OlZARzJv8,68564
|
|
12
12
|
sky/models.py,sha256=Eor-cT4D71QTimogcnJ5ey1G1PXK-OXN-snEtE8Uu_g,3152
|
|
@@ -78,9 +78,10 @@ sky/client/__init__.py,sha256=pz6xvVSd9X-gwqbsDL0E9QOojYqM0KAD0j-NCyCIF1k,38
|
|
|
78
78
|
sky/client/common.py,sha256=qaSm4QJxk5wfmi1CkvxFtUFtmL-BoielGhjn-aFwuto,15511
|
|
79
79
|
sky/client/oauth.py,sha256=sNJ_DMsSTcxluj5FeNQ2IafZJLImRFmCAZ79bXeABn4,2871
|
|
80
80
|
sky/client/sdk.py,sha256=1KIBayflVwL0sVoCj8IP5W75cwT-YEEdpJnglYLaQ98,92749
|
|
81
|
+
sky/client/sdk.pyi,sha256=Dyu9wBaCZmB3O_pg7q0pHe6i1aVrNFX73eGSdLAm_W8,8082
|
|
81
82
|
sky/client/service_account_auth.py,sha256=5jXk0G6ufuW-SHCO7BEHQeTO0_2a8KfFmA63auXFRj4,1529
|
|
82
83
|
sky/client/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
-
sky/client/cli/command.py,sha256=
|
|
84
|
+
sky/client/cli/command.py,sha256=MfmL8YP6Dvhq_xD88fihsFmZmd43wQEGJ_mdEx7S9c0,222382
|
|
84
85
|
sky/client/cli/deprecation_utils.py,sha256=H_d5UyF2CekEoThduAzt5cihBO8hwKYMu0-Wqfbjv5E,3370
|
|
85
86
|
sky/client/cli/flags.py,sha256=6IdS_G2lB1C6r8kJMzLVREY_qV50VHiSfWlmppVrWuc,11623
|
|
86
87
|
sky/client/cli/git.py,sha256=dqSaJI1Ndv6RfKJa6HT6ednXr0j_pVlwSdh3XiQzB60,22018
|
|
@@ -108,19 +109,21 @@ sky/clouds/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
108
109
|
sky/clouds/utils/aws_utils.py,sha256=eT1GUR-OAfKS9CM0ZOARkhAYQ779GEGwPs9OXm6lwt0,2146
|
|
109
110
|
sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4t8,3555
|
|
110
111
|
sky/clouds/utils/gcp_utils.py,sha256=zpdibyvdROgDGqllcvQuST3pKqj6pzqX-gxCw-DsCfc,9873
|
|
111
|
-
sky/clouds/utils/oci_utils.py,sha256=
|
|
112
|
+
sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
|
|
112
113
|
sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
|
|
113
|
-
sky/dashboard/out/404.html,sha256=
|
|
114
|
-
sky/dashboard/out/clusters.html,sha256
|
|
115
|
-
sky/dashboard/out/config.html,sha256=
|
|
114
|
+
sky/dashboard/out/404.html,sha256=p0x5-g-vv2eROgy4aMYoAyurY-16eHNiwnr9KktFNCc,1423
|
|
115
|
+
sky/dashboard/out/clusters.html,sha256=-jUb0VgsJ1VJyWFNGB6pt4PgMkme-pYrjWWXhYQDH3w,1418
|
|
116
|
+
sky/dashboard/out/config.html,sha256=WTgEcdoK5BrXEviYHZmLGqb6kTr2hSIpcTCyANM7308,1414
|
|
116
117
|
sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
|
|
117
|
-
sky/dashboard/out/index.html,sha256=
|
|
118
|
-
sky/dashboard/out/infra.html,sha256=
|
|
119
|
-
sky/dashboard/out/jobs.html,sha256=
|
|
118
|
+
sky/dashboard/out/index.html,sha256=rezlq2bBvM5DGx3spvKY1RwU6x8S2KFwiWDtBBuhibI,1407
|
|
119
|
+
sky/dashboard/out/infra.html,sha256=PMLRN7KnCTyi7fi9nEyagq0E5mlLhvIZM6g3sHiNCao,1412
|
|
120
|
+
sky/dashboard/out/jobs.html,sha256=QAx1nUDH2bUWxtPVK5Pr7jxlCtLwa9yupMrp-Yhkezs,1410
|
|
120
121
|
sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
|
|
121
|
-
sky/dashboard/out/users.html,sha256=
|
|
122
|
-
sky/dashboard/out/volumes.html,sha256=
|
|
123
|
-
sky/dashboard/out/workspaces.html,sha256=
|
|
122
|
+
sky/dashboard/out/users.html,sha256=2SrkAvPJjosPgpXm4BWsvspTCoKTd21jnZSo2AmBnEs,1412
|
|
123
|
+
sky/dashboard/out/volumes.html,sha256=Th2LCuQwJsCTiHIWP8oCQwU4BxiwLqJbtgbRizPXtY4,1416
|
|
124
|
+
sky/dashboard/out/workspaces.html,sha256=RCIy_sO1TWc66Ed5xU_UyKxHtP0sowGM2SCK4rAchGQ,1422
|
|
125
|
+
sky/dashboard/out/_next/static/BURfWrKsQk9psMPv0OXrh/_buildManifest.js,sha256=mmxo6wQVKY20ZhMR66BRt5Wcei8mpj5spy7xJIR2Qy8,2236
|
|
126
|
+
sky/dashboard/out/_next/static/BURfWrKsQk9psMPv0OXrh/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
124
127
|
sky/dashboard/out/_next/static/chunks/1043-869d9c78bf5dd3df.js,sha256=bAxynBdZtwL6IUsmByq0m47nF_VnO1lsMN9Xjdrp1GI,18328
|
|
125
128
|
sky/dashboard/out/_next/static/chunks/1141-e49a159c30a6c4a7.js,sha256=KK5G7lgpUnTVxW1tvREGo0rPqKfq8nDl6xx1T21fgCo,17818
|
|
126
129
|
sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
|
|
@@ -156,7 +159,7 @@ sky/dashboard/out/_next/static/chunks/framework-efc06c2733009cd3.js,sha256=XKYUV
|
|
|
156
159
|
sky/dashboard/out/_next/static/chunks/main-app-68c028b1bc5e1b72.js,sha256=zSukg-WO1Xy-B2xEIIGHXYApy2KOY9xWHcLqAYQvF3A,115883
|
|
157
160
|
sky/dashboard/out/_next/static/chunks/main-c0a4f1ea606d48d2.js,sha256=DPLM6ccDgTnITBgsqZPN3gmcI2szGCi9b_60PJZkTJQ,109885
|
|
158
161
|
sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
159
|
-
sky/dashboard/out/_next/static/chunks/webpack-
|
|
162
|
+
sky/dashboard/out/_next/static/chunks/webpack-b6447da22305b14a.js,sha256=XEtasvjEBrvPb5_b59DWWPFOtjUR6oXlLAqTlHsDLLI,4817
|
|
160
163
|
sky/dashboard/out/_next/static/chunks/pages/_app-da491665d4289aae.js,sha256=lZkOnC3PzyWAlYFDLoz0JOHgbnpqDBpk-XOqyQnmghM,95489
|
|
161
164
|
sky/dashboard/out/_next/static/chunks/pages/_error-c72a1f77a3c0be1b.js,sha256=D2OpMaqpdtCPyq6iPhZHuF2ekyMjleRchSNCLR6fqps,250
|
|
162
165
|
sky/dashboard/out/_next/static/chunks/pages/clusters-3d4be4961e1c94eb.js,sha256=kZI6ZPQB7bzi9HtLRlGGRqr9G4NlGTLsLv6OdqYVgek,860
|
|
@@ -174,15 +177,13 @@ sky/dashboard/out/_next/static/chunks/pages/jobs/[job]-dc0299ffefebcdbe.js,sha25
|
|
|
174
177
|
sky/dashboard/out/_next/static/chunks/pages/workspace/new-5629d4e551dba1ee.js,sha256=K9tqKHcB2kiSHTAddLaM2oL1PzmqZNTdLDOuNzCaJNM,765
|
|
175
178
|
sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-6bcd4b20914d76c9.js,sha256=wCk-0BTOhpwUb22meXUGhG7zX-retkF3aR7cuk4qbYQ,1492
|
|
176
179
|
sky/dashboard/out/_next/static/css/b3227360726f12eb.css,sha256=H55rkeVIrdGOUAIPmLZ6C78aEgXb7fEPa9mT9BOuLBI,55358
|
|
177
|
-
sky/dashboard/out/
|
|
178
|
-
sky/dashboard/out/
|
|
179
|
-
sky/dashboard/out/
|
|
180
|
-
sky/dashboard/out/
|
|
181
|
-
sky/dashboard/out/infra/[context].html,sha256=blPLZJstKh54IE8wiVjdRQa_tlY814SFUqv5mwhu1UY,1436
|
|
182
|
-
sky/dashboard/out/jobs/[job].html,sha256=UdspJR04vQy1rFeRHXkyrUV6mQy433dVoIf012h-FIg,2305
|
|
180
|
+
sky/dashboard/out/clusters/[cluster].html,sha256=qwMfhXpjeA4bS-0ktZFYTP11K4O25sVVG7-Zr4W_6Tc,2848
|
|
181
|
+
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=dqtv_VE_tD-rfWEJvQE-1pBK4w97mZzXZYSGH4rtiPM,2161
|
|
182
|
+
sky/dashboard/out/infra/[context].html,sha256=LzSn3CJnsShkt6QI6P6XEjccEA-EGifEHDGdlI1yQN0,1436
|
|
183
|
+
sky/dashboard/out/jobs/[job].html,sha256=5jCC9Gwf37GsR4-UeT1zs0EY1dUhBEw_e75u5Vw9ERs,2305
|
|
183
184
|
sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
|
|
184
|
-
sky/dashboard/out/workspace/new.html,sha256=
|
|
185
|
-
sky/dashboard/out/workspaces/[name].html,sha256=
|
|
185
|
+
sky/dashboard/out/workspace/new.html,sha256=daD8SXIwAqkT_Fi7hcFUbuZ8UUmFaHYZcND83abF4rE,1428
|
|
186
|
+
sky/dashboard/out/workspaces/[name].html,sha256=Rx76Z3sW1K2qCuAnLgwldEvYXyJZ2il_SBpWafCrMFE,2846
|
|
186
187
|
sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
|
|
187
188
|
sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
|
|
188
189
|
sky/data/data_utils.py,sha256=CNYPM963qby5ddW0DZNbhiWXkqgB9MHh_jrC5DoBctM,33437
|
|
@@ -202,8 +203,9 @@ sky/jobs/server/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
|
202
203
|
sky/jobs/server/core.py,sha256=e6kcXYvlCs6ncX3g5rvBqTd0SIwxomLi-9v8MMltx0Q,32558
|
|
203
204
|
sky/jobs/server/server.py,sha256=ae8JAs-2ipWqL_GsA3x8T2mY-OJLc3ioWg_CfRzCUIY,4011
|
|
204
205
|
sky/jobs/server/utils.py,sha256=q9KL1VGJ8TBIypzt3U9ozHd90QwRib7CBPrXZypMQ98,3496
|
|
205
|
-
sky/logs/__init__.py,sha256=
|
|
206
|
-
sky/logs/agent.py,sha256=
|
|
206
|
+
sky/logs/__init__.py,sha256=zW4gAEvWDz5S53FlLp3krAuKrmTSJ0e3kZDnhxSbW4E,722
|
|
207
|
+
sky/logs/agent.py,sha256=TOFzB4rlJF3tNHsluyXLtyE0wAcAUcMaViwksmLTGFw,3218
|
|
208
|
+
sky/logs/aws.py,sha256=XVXegScCfItKbTmT-L6YS96zk-jOfBE4g58J6tPYCdA,10560
|
|
207
209
|
sky/logs/gcp.py,sha256=eKVEcHO3FJRg_YTcE9omE8uAIF6AdBWWpkEPqWFAqXg,3857
|
|
208
210
|
sky/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
211
|
sky/metrics/utils.py,sha256=Cww3yNG4HyW4DEdLOFUayFgMZ16t2JFSvvhuTTV7Vio,7654
|
|
@@ -329,12 +331,12 @@ sky/serve/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
329
331
|
sky/serve/server/core.py,sha256=-djglmHVX-A3XTf0A-4pekoQ7-_Me7KzFnQjK8gaDDY,42080
|
|
330
332
|
sky/serve/server/server.py,sha256=A9K37a0nQgZeN3eKWv62Oh2C5TSAReTZ9pHmztqlI-c,4396
|
|
331
333
|
sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
|
|
332
|
-
sky/server/common.py,sha256=
|
|
334
|
+
sky/server/common.py,sha256=PmVNQ0XRxeJoKhadxj9Zn8DETiGVGOO6AAMythScYs8,34991
|
|
333
335
|
sky/server/config.py,sha256=XWf5Kw4am6vMO5wcyWevbQAFH-dmKb7AMEgDzD083-M,8538
|
|
334
336
|
sky/server/constants.py,sha256=v6RP8ZEwCNsxO2s2IukgOcEldZO5bvcQaxmOTA0Cf0g,2321
|
|
335
337
|
sky/server/metrics.py,sha256=6H6n6dq_C5HMaU97mJlRUB9bqOEA_k205PO15wE3AWk,3648
|
|
336
|
-
sky/server/rest.py,sha256
|
|
337
|
-
sky/server/server.py,sha256=
|
|
338
|
+
sky/server/rest.py,sha256=-oDsI8-NmIcb7aqy_8USB4lQbPWdQibST59GJVtFUi8,7983
|
|
339
|
+
sky/server/server.py,sha256=gLCbU5ZB4mH8YFgu-70suOj58x7tpg_VGNzzqOfEf5U,73620
|
|
338
340
|
sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
|
|
339
341
|
sky/server/stream_utils.py,sha256=RS4RuMxQqTGqp3uxzZVtmFWzos4d49P7hMX_VklzEVU,9189
|
|
340
342
|
sky/server/uvicorn.py,sha256=I-JUJwgUznt87hboDd66NTRaw0WtfFVzxxtoxowNqBg,9266
|
|
@@ -344,7 +346,7 @@ sky/server/html/token_page.html,sha256=eUndS5u1foL9vaWGPRTLMt7lCzD1g0wYJ2v_EeeFz
|
|
|
344
346
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
347
|
sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
|
|
346
348
|
sky/server/requests/executor.py,sha256=_BaE4QDTowLyaSyWCFVX_GqfrHknNRWuBexpDPMEdes,27100
|
|
347
|
-
sky/server/requests/payloads.py,sha256=
|
|
349
|
+
sky/server/requests/payloads.py,sha256=5iZBzryXBGVtT9Rf14vs6HaOzoJ09s3fm8R0OL3YwOE,24056
|
|
348
350
|
sky/server/requests/preconditions.py,sha256=uUQjzFFHf7O5-WvBypMzqViGmd1CXksbqrrDPmY_s_Y,7178
|
|
349
351
|
sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
|
|
350
352
|
sky/server/requests/requests.py,sha256=oktfLJTNM8kem2lRkVpPgj_GMRbjEHrdaHjT4w2SDY0,28673
|
|
@@ -432,7 +434,7 @@ sky/utils/command_runner.py,sha256=envbCPiFAD6LnZHhCN07VCdDh1LzbPFbXHoc8j2uxOI,4
|
|
|
432
434
|
sky/utils/command_runner.pyi,sha256=IS3qeCTgWys94KhaHx3S2Pty8qDWn_zFht7bgDLJFcw,9593
|
|
433
435
|
sky/utils/common.py,sha256=nTg-mjNu0diZjs2UvyiMc84Tu1ZonRLRAmfqFIP1TtY,2242
|
|
434
436
|
sky/utils/common_utils.py,sha256=0Lq2Fm9ZV_MnCFLAG8ssPCXzhx7rQ6S6IoH0h8hGbRw,39254
|
|
435
|
-
sky/utils/config_utils.py,sha256=
|
|
437
|
+
sky/utils/config_utils.py,sha256=PeeGNhy-MS9TRWhoARPgrhL6qs0axg39jYiYkLgJ4VU,12932
|
|
436
438
|
sky/utils/context.py,sha256=yEGvcKr9fKEeoAnNKiXDiky7dlLOChFdZYXGr0EeQ9g,9997
|
|
437
439
|
sky/utils/context_utils.py,sha256=cby-QPmnGObjIE4K7eZ_dkWZdUo7YJUmnJr5oKf_v54,6712
|
|
438
440
|
sky/utils/control_master_utils.py,sha256=iD4M0onjYOdZ2RuxjwMBl4KhafHXJzuHjvqlBUnu-VE,1450
|
|
@@ -450,8 +452,8 @@ sky/utils/registry.py,sha256=I08nS0rvCF-xR5GEZoHEVgN1jcOeglz77h7xPpBCIjU,4179
|
|
|
450
452
|
sky/utils/resource_checker.py,sha256=N18XhoVIqjY1VzmKvxQxRchRgC2WIgcEQyHDkLvg4Y8,5825
|
|
451
453
|
sky/utils/resources_utils.py,sha256=zcJXHYQt6WtQHKuWEif1QP1NtSO7XQYJBaEs625yV1Y,15958
|
|
452
454
|
sky/utils/rich_console_utils.py,sha256=wPvAlshaFHuMZSjiDnaK3OSBppZLBjAn-lj7AvxNBQk,553
|
|
453
|
-
sky/utils/rich_utils.py,sha256=
|
|
454
|
-
sky/utils/schemas.py,sha256=
|
|
455
|
+
sky/utils/rich_utils.py,sha256=iR6Gf8ZewE9sut4uhkmZwtEelzm3FvckM9K41meQnWM,14650
|
|
456
|
+
sky/utils/schemas.py,sha256=xTTGEyV3YeMcDSeUxJWKcltI4kzBgFc5oUYT1C9-THg,54608
|
|
455
457
|
sky/utils/status_lib.py,sha256=QGkd6COD1GX1h30Mk9RMUdyeUOMJs5971GkxTcFgdsU,1705
|
|
456
458
|
sky/utils/subprocess_utils.py,sha256=tOpFY_1ml7JkVGAN1o473lcKPklGR95qBCW61eu8kEo,15773
|
|
457
459
|
sky/utils/tempstore.py,sha256=3S5fJ3UjnE12ve38c3MpTXpoRWfDSGndZpqNe7P_8aU,2148
|
|
@@ -494,9 +496,9 @@ sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
494
496
|
sky/workspaces/core.py,sha256=MkQoVqWN67tf4VRq284U9vgAw4lwb_cpUfwHQT4V9Ow,16598
|
|
495
497
|
sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
|
|
496
498
|
sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
|
|
497
|
-
skypilot_nightly-1.0.0.
|
|
498
|
-
skypilot_nightly-1.0.0.
|
|
499
|
-
skypilot_nightly-1.0.0.
|
|
500
|
-
skypilot_nightly-1.0.0.
|
|
501
|
-
skypilot_nightly-1.0.0.
|
|
502
|
-
skypilot_nightly-1.0.0.
|
|
499
|
+
skypilot_nightly-1.0.0.dev20250724.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
|
500
|
+
skypilot_nightly-1.0.0.dev20250724.dist-info/METADATA,sha256=gavcVehZ6DKbE96x5_lGsNikDqXqR2Ld-2Ff7elPhQo,19032
|
|
501
|
+
skypilot_nightly-1.0.0.dev20250724.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
502
|
+
skypilot_nightly-1.0.0.dev20250724.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
|
503
|
+
skypilot_nightly-1.0.0.dev20250724.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
|
504
|
+
skypilot_nightly-1.0.0.dev20250724.dist-info/RECORD,,
|
/sky/dashboard/out/_next/static/{mym3Ciwp-zqU7ZpOLGnrW → BURfWrKsQk9psMPv0OXrh}/_buildManifest.js
RENAMED
|
File without changes
|
/sky/dashboard/out/_next/static/{mym3Ciwp-zqU7ZpOLGnrW → BURfWrKsQk9psMPv0OXrh}/_ssgManifest.js
RENAMED
|
File without changes
|
{skypilot_nightly-1.0.0.dev20250723.dist-info → skypilot_nightly-1.0.0.dev20250724.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|