skypilot-nightly 1.0.0.dev20250302__py3-none-any.whl → 1.0.0.dev20250303__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.
- sky/__init__.py +2 -2
- sky/clouds/service_catalog/data_fetchers/fetch_fluidstack.py +4 -2
- sky/provision/fluidstack/instance.py +1 -1
- {skypilot_nightly-1.0.0.dev20250302.dist-info → skypilot_nightly-1.0.0.dev20250303.dist-info}/METADATA +1 -1
- {skypilot_nightly-1.0.0.dev20250302.dist-info → skypilot_nightly-1.0.0.dev20250303.dist-info}/RECORD +9 -9
- {skypilot_nightly-1.0.0.dev20250302.dist-info → skypilot_nightly-1.0.0.dev20250303.dist-info}/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250302.dist-info → skypilot_nightly-1.0.0.dev20250303.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250302.dist-info → skypilot_nightly-1.0.0.dev20250303.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250302.dist-info → skypilot_nightly-1.0.0.dev20250303.dist-info}/top_level.txt +0 -0
sky/__init__.py
CHANGED
@@ -5,7 +5,7 @@ from typing import Optional
|
|
5
5
|
import urllib.request
|
6
6
|
|
7
7
|
# Replaced with the current commit when building the wheels.
|
8
|
-
_SKYPILOT_COMMIT_SHA = '
|
8
|
+
_SKYPILOT_COMMIT_SHA = '50bbf9162d3516d5eb4e59e071822a4f3c38622c'
|
9
9
|
|
10
10
|
|
11
11
|
def _get_git_commit():
|
@@ -35,7 +35,7 @@ def _get_git_commit():
|
|
35
35
|
|
36
36
|
|
37
37
|
__commit__ = _get_git_commit()
|
38
|
-
__version__ = '1.0.0.
|
38
|
+
__version__ = '1.0.0.dev20250303'
|
39
39
|
__root_dir__ = os.path.dirname(os.path.abspath(__file__))
|
40
40
|
|
41
41
|
|
@@ -168,8 +168,8 @@ plan_vcpus_memory = [{
|
|
168
168
|
|
169
169
|
GPU_MAP = {
|
170
170
|
'H100_PCIE_80GB': 'H100',
|
171
|
-
'H100_NVLINK_80GB': 'H100',
|
172
|
-
'A100_NVLINK_80GB': 'A100-80GB',
|
171
|
+
'H100_NVLINK_80GB': 'H100-NVLINK',
|
172
|
+
'A100_NVLINK_80GB': 'A100-80GB-NVLINK',
|
173
173
|
'A100_SXM4_80GB': 'A100-80GB-SXM',
|
174
174
|
'H100_SXM5_80GB': 'H100-SXM',
|
175
175
|
'A100_PCIE_80GB': 'A100-80GB',
|
@@ -206,6 +206,8 @@ def create_catalog(output_dir: str) -> None:
|
|
206
206
|
with open(DEFAULT_FLUIDSTACK_API_KEY_PATH, 'r', encoding='UTF-8') as f:
|
207
207
|
api_key = f.read().strip()
|
208
208
|
response = requests.get(ENDPOINT, headers={'api-key': api_key})
|
209
|
+
if not response.ok:
|
210
|
+
raise Exception(response.text)
|
209
211
|
plans = response.json()
|
210
212
|
|
211
213
|
with open(os.path.join(output_dir, 'vms.csv'), mode='w',
|
@@ -298,7 +298,7 @@ def query_instances(
|
|
298
298
|
'pending': status_lib.ClusterStatus.INIT,
|
299
299
|
'stopped': status_lib.ClusterStatus.STOPPED,
|
300
300
|
'running': status_lib.ClusterStatus.UP,
|
301
|
-
'
|
301
|
+
'failed': status_lib.ClusterStatus.INIT,
|
302
302
|
'terminated': None,
|
303
303
|
}
|
304
304
|
statuses: Dict[str, Optional[status_lib.ClusterStatus]] = {}
|
{skypilot_nightly-1.0.0.dev20250302.dist-info → skypilot_nightly-1.0.0.dev20250303.dist-info}/RECORD
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
sky/__init__.py,sha256=
|
1
|
+
sky/__init__.py,sha256=ylk3HVpmIoaOBWzfyeAB5oaee9NOryycO723C7F9ljs,6428
|
2
2
|
sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
|
3
3
|
sky/authentication.py,sha256=hCEqi77nprQEg3ktfRL51xiiw16zwZOmFEDB_Z7fWVU,22384
|
4
4
|
sky/check.py,sha256=NDKx_Zm7YRxPjMv82wz3ESLnGIPljaACyqVdVNM0PzY,11258
|
@@ -89,7 +89,7 @@ sky/clouds/service_catalog/data_fetchers/analyze.py,sha256=VdksJQs3asFE8H5T3ZV1F
|
|
89
89
|
sky/clouds/service_catalog/data_fetchers/fetch_aws.py,sha256=Zj4bqWPiDcT_ZFyHxQw_k7ORxWZrx91euar9kL0VPaI,23343
|
90
90
|
sky/clouds/service_catalog/data_fetchers/fetch_azure.py,sha256=7YVnoGDGGZI2TK02bj_LOoD4E5J5CFl6eqz2XlR4Vy8,12790
|
91
91
|
sky/clouds/service_catalog/data_fetchers/fetch_cudo.py,sha256=52P48lvWN0s1ArjeLPeLemPRpxjSRcHincRle0nqdm4,3440
|
92
|
-
sky/clouds/service_catalog/data_fetchers/fetch_fluidstack.py,sha256=
|
92
|
+
sky/clouds/service_catalog/data_fetchers/fetch_fluidstack.py,sha256=hsqpQi_YUI-qil3zLCEGatrR7BkWzywr4otRdHrd-4k,7350
|
93
93
|
sky/clouds/service_catalog/data_fetchers/fetch_gcp.py,sha256=JnugFifzHPQITlbDKoKexE8NqgagOEfQWTxon7P6vJ0,30935
|
94
94
|
sky/clouds/service_catalog/data_fetchers/fetch_lambda_cloud.py,sha256=MUzogyLruLQmIt-To6TsfnGPgv_nnlp49XYbeshsd7I,5003
|
95
95
|
sky/clouds/service_catalog/data_fetchers/fetch_vast.py,sha256=zR9icM3ty5C8tGw13pQbsBtQQMgG4kl1j_jSGqqrgOA,4741
|
@@ -152,7 +152,7 @@ sky/provision/do/utils.py,sha256=ytRi-t8UtS8hoqoXAqrP9I5PVkDJdLd9wygRygSDe5c,103
|
|
152
152
|
sky/provision/fluidstack/__init__.py,sha256=h2df4JHCHtBMYZwtC05WM0VnLbAsRO-T3GFTf6NpY04,592
|
153
153
|
sky/provision/fluidstack/config.py,sha256=hDqesKEVjIhXLTWej3fDdpbHtKBXoybxFGgC6T8U5uo,326
|
154
154
|
sky/provision/fluidstack/fluidstack_utils.py,sha256=dYEHRRY86nCxQtZ_GIV6WhkNvvnkIuqDDKJqf1CouKY,5729
|
155
|
-
sky/provision/fluidstack/instance.py,sha256=
|
155
|
+
sky/provision/fluidstack/instance.py,sha256=TCGLojd5mEuEaUQ1BnmRvXMOSSBjltyf7dhPG3OLdgQ,13787
|
156
156
|
sky/provision/gcp/__init__.py,sha256=zlgjR2JoaGD7sStGStMRu9bJ62f-8NKEIyb-bFHBlzM,528
|
157
157
|
sky/provision/gcp/config.py,sha256=rNpnRFNZqqvEHjzjSdwMoI7Fq7RW9w_dL2vIaubj3Dc,33319
|
158
158
|
sky/provision/gcp/constants.py,sha256=9eLZatVSW2uGqxrvFGaWK2A_Ab0o_4S4GdgUuI7mfsk,7441
|
@@ -344,9 +344,9 @@ sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488
|
|
344
344
|
sky/utils/kubernetes/kubernetes_deploy_utils.py,sha256=otzHzpliHDCpzYT-nU9Q0ZExbiFpDPWvhxwkvchZj7k,10073
|
345
345
|
sky/utils/kubernetes/rsync_helper.sh,sha256=h4YwrPFf9727CACnMJvF3EyK_0OeOYKKt4su_daKekw,1256
|
346
346
|
sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=Kq1MDygF2IxFmu9FXpCxqucXLmeUrvs6OtRij6XTQbo,6554
|
347
|
-
skypilot_nightly-1.0.0.
|
348
|
-
skypilot_nightly-1.0.0.
|
349
|
-
skypilot_nightly-1.0.0.
|
350
|
-
skypilot_nightly-1.0.0.
|
351
|
-
skypilot_nightly-1.0.0.
|
352
|
-
skypilot_nightly-1.0.0.
|
347
|
+
skypilot_nightly-1.0.0.dev20250303.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
348
|
+
skypilot_nightly-1.0.0.dev20250303.dist-info/METADATA,sha256=VVOYmK48D7iagTqlQiCjx2Qc6nk11wHrI1SDcHIRTkE,19115
|
349
|
+
skypilot_nightly-1.0.0.dev20250303.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
350
|
+
skypilot_nightly-1.0.0.dev20250303.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
351
|
+
skypilot_nightly-1.0.0.dev20250303.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
352
|
+
skypilot_nightly-1.0.0.dev20250303.dist-info/RECORD,,
|
File without changes
|
{skypilot_nightly-1.0.0.dev20250302.dist-info → skypilot_nightly-1.0.0.dev20250303.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|