skypilot-nightly 1.0.0.dev20251012__py3-none-any.whl → 1.0.0.dev20251013__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 +4 -2
- sky/adaptors/shadeform.py +89 -0
- sky/authentication.py +43 -0
- sky/backends/backend_utils.py +2 -0
- sky/backends/cloud_vm_ray_backend.py +2 -0
- sky/catalog/data_fetchers/fetch_shadeform.py +142 -0
- sky/catalog/shadeform_catalog.py +165 -0
- sky/clouds/__init__.py +2 -0
- sky/clouds/shadeform.py +393 -0
- sky/dashboard/out/404.html +1 -1
- sky/dashboard/out/_next/static/chunks/{webpack-66f23594d38c7f16.js → webpack-ac3a34c8f9fef041.js} +1 -1
- sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
- sky/dashboard/out/clusters/[cluster].html +1 -1
- sky/dashboard/out/clusters.html +1 -1
- sky/dashboard/out/config.html +1 -1
- sky/dashboard/out/index.html +1 -1
- sky/dashboard/out/infra/[context].html +1 -1
- sky/dashboard/out/infra.html +1 -1
- sky/dashboard/out/jobs/[job].html +1 -1
- sky/dashboard/out/jobs/pools/[pool].html +1 -1
- sky/dashboard/out/jobs.html +1 -1
- sky/dashboard/out/users.html +1 -1
- sky/dashboard/out/volumes.html +1 -1
- sky/dashboard/out/workspace/new.html +1 -1
- sky/dashboard/out/workspaces/[name].html +1 -1
- sky/dashboard/out/workspaces.html +1 -1
- sky/provision/__init__.py +1 -0
- sky/provision/shadeform/__init__.py +11 -0
- sky/provision/shadeform/config.py +12 -0
- sky/provision/shadeform/instance.py +351 -0
- sky/provision/shadeform/shadeform_utils.py +83 -0
- sky/server/requests/executor.py +22 -2
- sky/server/server.py +4 -3
- sky/setup_files/dependencies.py +1 -0
- sky/skylet/constants.py +1 -1
- sky/templates/shadeform-ray.yml.j2 +72 -0
- sky/utils/context_utils.py +13 -9
- {skypilot_nightly-1.0.0.dev20251012.dist-info → skypilot_nightly-1.0.0.dev20251013.dist-info}/METADATA +35 -34
- {skypilot_nightly-1.0.0.dev20251012.dist-info → skypilot_nightly-1.0.0.dev20251013.dist-info}/RECORD +45 -36
- /sky/dashboard/out/_next/static/{yOfMelBaFp8uL5F9atyAK → MtlDUf-nH1hhcy7xwbCj3}/_buildManifest.js +0 -0
- /sky/dashboard/out/_next/static/{yOfMelBaFp8uL5F9atyAK → MtlDUf-nH1hhcy7xwbCj3}/_ssgManifest.js +0 -0
- {skypilot_nightly-1.0.0.dev20251012.dist-info → skypilot_nightly-1.0.0.dev20251013.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20251012.dist-info → skypilot_nightly-1.0.0.dev20251013.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20251012.dist-info → skypilot_nightly-1.0.0.dev20251013.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20251012.dist-info → skypilot_nightly-1.0.0.dev20251013.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
cluster_name: {{cluster_name_on_cloud}}
|
|
2
|
+
|
|
3
|
+
# The maximum number of workers nodes to launch in addition to the head node.
|
|
4
|
+
max_workers: {{num_nodes - 1}}
|
|
5
|
+
upscaling_speed: {{num_nodes - 1}}
|
|
6
|
+
idle_timeout_minutes: 60
|
|
7
|
+
|
|
8
|
+
provider:
|
|
9
|
+
type: external
|
|
10
|
+
module: sky.provision.shadeform
|
|
11
|
+
region: "{{region}}"
|
|
12
|
+
disable_launch_config_check: true
|
|
13
|
+
|
|
14
|
+
auth:
|
|
15
|
+
ssh_user: shadeform
|
|
16
|
+
ssh_private_key: {{ssh_private_key}}
|
|
17
|
+
ssh_key_id: {{ssh_key_id}}
|
|
18
|
+
|
|
19
|
+
available_node_types:
|
|
20
|
+
ray_head_default:
|
|
21
|
+
{%- if custom_resources %}
|
|
22
|
+
resources: {{custom_resources}}
|
|
23
|
+
{%- else %}
|
|
24
|
+
resources: {}
|
|
25
|
+
{%- endif %}
|
|
26
|
+
node_config:
|
|
27
|
+
InstanceType: {{instance_type}}
|
|
28
|
+
PublicKey: |-
|
|
29
|
+
skypilot:ssh_public_key_content
|
|
30
|
+
|
|
31
|
+
head_node_type: ray_head_default
|
|
32
|
+
|
|
33
|
+
# Format: `REMOTE_PATH : LOCAL_PATH`
|
|
34
|
+
file_mounts: {
|
|
35
|
+
"{{sky_ray_yaml_remote_path}}": "{{sky_ray_yaml_local_path}}",
|
|
36
|
+
"{{sky_remote_path}}/{{sky_wheel_hash}}": "{{sky_local_path}}",
|
|
37
|
+
{%- for remote_path, local_path in credentials.items() %}
|
|
38
|
+
"{{remote_path}}": "{{local_path}}",
|
|
39
|
+
{%- endfor %}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
rsync_exclude: []
|
|
43
|
+
|
|
44
|
+
initialization_commands: []
|
|
45
|
+
|
|
46
|
+
# List of shell commands to run to set up nodes.
|
|
47
|
+
# NOTE: these are very performance-sensitive. Each new item opens/closes an SSH
|
|
48
|
+
# connection, which is expensive. Try your best to co-locate commands into fewer
|
|
49
|
+
# items!
|
|
50
|
+
#
|
|
51
|
+
# Increment the following for catching performance bugs easier:
|
|
52
|
+
# current num items (num SSH connections): 1
|
|
53
|
+
setup_commands:
|
|
54
|
+
# Create ~/.ssh/config file in case the file does not exist in the image.
|
|
55
|
+
# Line 'rm ..': there is another installation of pip.
|
|
56
|
+
# Line 'sudo bash ..': set the ulimit as suggested by ray docs for performance. https://docs.ray.io/en/latest/cluster/vms/user-guides/large-cluster-best-practices.html#system-configuration
|
|
57
|
+
# Line 'sudo grep ..': set the number of threads per process to unlimited to avoid ray job submit stucking issue when the number of running ray jobs increase.
|
|
58
|
+
# Line 'mkdir -p ..': disable host key check
|
|
59
|
+
# Line 'python3 -c ..': patch the buggy ray files and enable `-o allow_other` option for `goofys`
|
|
60
|
+
- {%- for initial_setup_command in initial_setup_commands %}
|
|
61
|
+
{{ initial_setup_command }}
|
|
62
|
+
{%- endfor %}
|
|
63
|
+
mkdir -p ~/.ssh; touch ~/.ssh/config; which patch > /dev/null || sudo apt install -y patch;
|
|
64
|
+
{{ conda_installation_commands }}
|
|
65
|
+
{{ ray_skypilot_installation_commands }}
|
|
66
|
+
sudo bash -c 'rm -rf /etc/security/limits.d; echo "* soft nofile 1048576" >> /etc/security/limits.conf; echo "* hard nofile 1048576" >> /etc/security/limits.conf';
|
|
67
|
+
sudo grep -e '^DefaultTasksMax' /etc/systemd/system.conf || (sudo bash -c 'echo "DefaultTasksMax=infinity" >> /etc/systemd/system.conf'); sudo systemctl set-property user-$(id -u $(whoami)).slice TasksMax=infinity; sudo systemctl daemon-reload;
|
|
68
|
+
(grep -Pzo -q "Host \*\n StrictHostKeyChecking no" ~/.ssh/config) || printf "Host *\n StrictHostKeyChecking no\n" >> ~/.ssh/config;
|
|
69
|
+
{{ ssh_max_sessions_config }}
|
|
70
|
+
|
|
71
|
+
# Command to start ray clusters are now placed in `sky.provision.instance_setup`.
|
|
72
|
+
# We do not need to list it here anymore.
|
sky/utils/context_utils.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"""Utilities for SkyPilot context."""
|
|
2
2
|
import asyncio
|
|
3
|
+
import concurrent.futures
|
|
3
4
|
import contextvars
|
|
4
5
|
import functools
|
|
5
6
|
import io
|
|
@@ -191,14 +192,17 @@ def to_thread(func: Callable[P, T], /, *args: P.args,
|
|
|
191
192
|
|
|
192
193
|
This is same as asyncio.to_thread added in python 3.9
|
|
193
194
|
"""
|
|
195
|
+
return to_thread_with_executor(None, func, *args, **kwargs)
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
def to_thread_with_executor(executor: Optional[concurrent.futures.Executor],
|
|
199
|
+
func: Callable[P, T], /, *args: P.args,
|
|
200
|
+
**kwargs: P.kwargs) -> 'asyncio.Future[T]':
|
|
201
|
+
"""Asynchronously run function *func* in a separate thread with
|
|
202
|
+
a custom executor."""
|
|
203
|
+
|
|
194
204
|
loop = asyncio.get_running_loop()
|
|
195
|
-
# This is critical to pass the current coroutine context to the new thread
|
|
196
205
|
pyctx = contextvars.copy_context()
|
|
197
|
-
func_call: Callable[..., T] = functools.partial(
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
pyctx.run, # type: ignore
|
|
201
|
-
func,
|
|
202
|
-
*args,
|
|
203
|
-
**kwargs)
|
|
204
|
-
return loop.run_in_executor(None, func_call)
|
|
206
|
+
func_call: Callable[..., T] = functools.partial(pyctx.run, func, *args,
|
|
207
|
+
**kwargs)
|
|
208
|
+
return loop.run_in_executor(executor, func_call)
|
|
@@ -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.dev20251013
|
|
4
4
|
Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
|
|
5
5
|
Author: SkyPilot Team
|
|
6
6
|
License: Apache 2.0
|
|
@@ -154,52 +154,53 @@ Requires-Dist: grpcio>=1.63.0; extra == "server"
|
|
|
154
154
|
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "server"
|
|
155
155
|
Requires-Dist: aiosqlite; extra == "server"
|
|
156
156
|
Requires-Dist: greenlet; extra == "server"
|
|
157
|
+
Provides-Extra: shadeform
|
|
157
158
|
Provides-Extra: all
|
|
158
|
-
Requires-Dist: anyio; extra == "all"
|
|
159
|
-
Requires-Dist: nebius>=0.2.47; extra == "all"
|
|
160
|
-
Requires-Dist: ecsapi>=0.2.0; extra == "all"
|
|
161
|
-
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
162
159
|
Requires-Dist: python-dateutil; extra == "all"
|
|
163
|
-
Requires-Dist:
|
|
160
|
+
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
161
|
+
Requires-Dist: tomli; python_version < "3.11" and extra == "all"
|
|
162
|
+
Requires-Dist: anyio; extra == "all"
|
|
163
|
+
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
164
164
|
Requires-Dist: aiosqlite; extra == "all"
|
|
165
|
-
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
|
|
166
|
-
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
167
|
-
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
168
165
|
Requires-Dist: casbin; extra == "all"
|
|
169
|
-
Requires-Dist:
|
|
170
|
-
Requires-Dist:
|
|
171
|
-
Requires-Dist:
|
|
166
|
+
Requires-Dist: pyjwt; extra == "all"
|
|
167
|
+
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
168
|
+
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
172
169
|
Requires-Dist: passlib; extra == "all"
|
|
170
|
+
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
171
|
+
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
172
|
+
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
173
|
+
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
174
|
+
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
175
|
+
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
176
|
+
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
177
|
+
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
178
|
+
Requires-Dist: nebius>=0.2.47; extra == "all"
|
|
173
179
|
Requires-Dist: greenlet; extra == "all"
|
|
174
|
-
Requires-Dist: msrestazure; extra == "all"
|
|
175
|
-
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
176
180
|
Requires-Dist: azure-common; extra == "all"
|
|
177
|
-
Requires-Dist:
|
|
178
|
-
Requires-Dist: websockets; extra == "all"
|
|
179
|
-
Requires-Dist: tomli; python_version < "3.11" and extra == "all"
|
|
180
|
-
Requires-Dist: ray[default]>=2.6.1; extra == "all"
|
|
181
|
+
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
181
182
|
Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
|
|
182
|
-
Requires-Dist: google-cloud-storage; extra == "all"
|
|
183
|
-
Requires-Dist: docker; extra == "all"
|
|
184
|
-
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
185
|
-
Requires-Dist: msgraph-sdk; extra == "all"
|
|
186
183
|
Requires-Dist: ibm-vpc; extra == "all"
|
|
187
|
-
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
188
|
-
Requires-Dist: pyjwt; extra == "all"
|
|
189
|
-
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
190
|
-
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
191
|
-
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
192
|
-
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
193
184
|
Requires-Dist: oci; extra == "all"
|
|
194
|
-
Requires-Dist:
|
|
195
|
-
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
196
|
-
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
185
|
+
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
|
197
186
|
Requires-Dist: azure-identity>=1.19.0; extra == "all"
|
|
198
|
-
Requires-Dist:
|
|
187
|
+
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
199
188
|
Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
|
|
200
|
-
Requires-Dist:
|
|
201
|
-
Requires-Dist:
|
|
189
|
+
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
190
|
+
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
191
|
+
Requires-Dist: docker; extra == "all"
|
|
202
192
|
Requires-Dist: aiohttp; extra == "all"
|
|
193
|
+
Requires-Dist: msrestazure; extra == "all"
|
|
194
|
+
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
|
|
195
|
+
Requires-Dist: ecsapi>=0.2.0; extra == "all"
|
|
196
|
+
Requires-Dist: google-cloud-storage; extra == "all"
|
|
197
|
+
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
198
|
+
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
199
|
+
Requires-Dist: runpod>=1.6.1; extra == "all"
|
|
200
|
+
Requires-Dist: msgraph-sdk; extra == "all"
|
|
201
|
+
Requires-Dist: ray[default]>=2.6.1; extra == "all"
|
|
202
|
+
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
203
|
+
Requires-Dist: websockets; extra == "all"
|
|
203
204
|
Dynamic: author
|
|
204
205
|
Dynamic: classifier
|
|
205
206
|
Dynamic: description
|
{skypilot_nightly-1.0.0.dev20251012.dist-info → skypilot_nightly-1.0.0.dev20251013.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
sky/__init__.py,sha256=
|
|
1
|
+
sky/__init__.py,sha256=p9xsxwspUbtiGPYc363r2tPdl-1ILDt6iKP0NhSbPpg,6759
|
|
2
2
|
sky/admin_policy.py,sha256=XdcJnYqmude-LGGop-8U-FeiJcqtfYsYtIy4rmoCJnM,9799
|
|
3
|
-
sky/authentication.py,sha256=
|
|
3
|
+
sky/authentication.py,sha256=Y1Ja3MSboM0R1oIOnMJM7EQOl0A1q6KKZRWuY8TfM-w,25681
|
|
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
|
|
@@ -33,12 +33,13 @@ sky/adaptors/oci.py,sha256=xJt6J9xBSFIENa6FwEt1V1sZE8puAZ_vPEoGlyQACPs,2839
|
|
|
33
33
|
sky/adaptors/primeintellect.py,sha256=rsdJpfJy7aYWL4fDpWUStuICdNF8POZckvndWWCE62E,37
|
|
34
34
|
sky/adaptors/runpod.py,sha256=qq_YVlyve7GkLtX1qHI4MGc3lEeCmcbUnt3xVHrAdAU,2303
|
|
35
35
|
sky/adaptors/seeweb.py,sha256=tcwEFenKQt953ma9KmXdVOu26HodBCifFaN9i5S_ICE,6153
|
|
36
|
+
sky/adaptors/shadeform.py,sha256=iKRBfPxYNoWSE7JwJTQ6CG1L62keupuNGM3kPF3zeq4,2658
|
|
36
37
|
sky/adaptors/vast.py,sha256=tpvmHi7IkQNzbbHVkeo04kUSajoEpSzXr2XgeO_I1LU,695
|
|
37
38
|
sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
|
|
38
39
|
sky/backends/__init__.py,sha256=l1xXpkzPFMma0ZkT4GzVMu7uvgS3AsECg6zLc0S3JHQ,702
|
|
39
40
|
sky/backends/backend.py,sha256=zmF6TuKtUwzsP1hq0TI9nuuUySlPc9sgeW6F4GC8Ckk,8352
|
|
40
|
-
sky/backends/backend_utils.py,sha256=
|
|
41
|
-
sky/backends/cloud_vm_ray_backend.py,sha256=
|
|
41
|
+
sky/backends/backend_utils.py,sha256=Q0ODNff_Kf7SFAmM1hEra_jlCNU1Bznc-zeeRbavDBE,177606
|
|
42
|
+
sky/backends/cloud_vm_ray_backend.py,sha256=usrdz5R9rLWgKtYro89NtvLt1vzI1SIOsK_wmrIgTYg,308523
|
|
42
43
|
sky/backends/docker_utils.py,sha256=_EhM6NStZDAwcegppQqExaB5iuSn1qL4xFFUqXAz2Uk,8392
|
|
43
44
|
sky/backends/local_docker_backend.py,sha256=ncc8-WJrMRnqPl9fzvGr-nftIz7tTzKtUi-p_z_nH60,17366
|
|
44
45
|
sky/backends/wheel_utils.py,sha256=DE71Muq5qLRhGpCVg1Rb6YOI7S_BzT8Hak27Pz8L4yw,12486
|
|
@@ -63,6 +64,7 @@ sky/catalog/primeintellect_catalog.py,sha256=PMOVyqrrSmVTTAExhxLGSKUtzCmbNXaVQF7
|
|
|
63
64
|
sky/catalog/runpod_catalog.py,sha256=R5FvDbs5PkibyG0sRs-MoiGdijKS02dbrJfqR7V7RPU,3919
|
|
64
65
|
sky/catalog/scp_catalog.py,sha256=PhsJ_-Ya3KL4MsE88X_WsfOUYmcMlPUuR3XjpLVjzA0,5436
|
|
65
66
|
sky/catalog/seeweb_catalog.py,sha256=_Puqt-RMNTz3Ey1kecLShGpe8o_pD-UP4nVxaYOrgek,6713
|
|
67
|
+
sky/catalog/shadeform_catalog.py,sha256=6gEsxYFnP4cvW_nOKXVzzvNMIIuP1FhvsI3jn5n5LOM,6039
|
|
66
68
|
sky/catalog/ssh_catalog.py,sha256=v-H7bjGazkRpfrzUFAkXXKC2NQJJFqzjLdToDTJkbT0,5911
|
|
67
69
|
sky/catalog/vast_catalog.py,sha256=IEOg-TFgtmXjpr0agFx9X7He6k5juZWKduVUoXQ2IWM,4375
|
|
68
70
|
sky/catalog/vsphere_catalog.py,sha256=22LzkYdGwDZDCCK2YZXN2d_D-uhQ6aRQBm6vCwTUdBE,4531
|
|
@@ -78,6 +80,7 @@ sky/catalog/data_fetchers/fetch_ibm.py,sha256=WPzR1y5ZaTdv-R3HLIdSUnOfWh4N9cqzKo
|
|
|
78
80
|
sky/catalog/data_fetchers/fetch_lambda_cloud.py,sha256=9-_gMwErwSbitC5ByZWWOKrn1S6_KfOUIfFbfbJbXZo,5033
|
|
79
81
|
sky/catalog/data_fetchers/fetch_nebius.py,sha256=PeiVTWsaw0P01cfq2xDcS1tcIhLIe4ObSPF1XLO67gc,12181
|
|
80
82
|
sky/catalog/data_fetchers/fetch_seeweb.py,sha256=jzFpZy5Fb0UCFdRUFTqoZGsPzlaIAjvyd1QlG5Kerbk,11314
|
|
83
|
+
sky/catalog/data_fetchers/fetch_shadeform.py,sha256=6TH1QHZ5xgQlGJFaN-PuD5dXa3dvQNsGGGlsKDLcFeY,5035
|
|
81
84
|
sky/catalog/data_fetchers/fetch_vast.py,sha256=xoVDSsQVgMLzyibCFN7yDgyH1Y96gk5G53to1ZAGRyg,5017
|
|
82
85
|
sky/catalog/data_fetchers/fetch_vsphere.py,sha256=Yf7tKzwJsQ_4f64IT1EAP108C1D3Rg35RUIwp7UX8KI,21438
|
|
83
86
|
sky/client/__init__.py,sha256=pz6xvVSd9X-gwqbsDL0E9QOojYqM0KAD0j-NCyCIF1k,38
|
|
@@ -91,7 +94,7 @@ sky/client/cli/command.py,sha256=Qn67dnfRXhiXDGMnG8eQI0PkCWpzpWMufkm4l1NN5Kg,251
|
|
|
91
94
|
sky/client/cli/deprecation_utils.py,sha256=H_d5UyF2CekEoThduAzt5cihBO8hwKYMu0-Wqfbjv5E,3370
|
|
92
95
|
sky/client/cli/flags.py,sha256=lLXHooU4HEslbHJuGAiCrKYkJZx99hAKaJbstw7s1bc,12136
|
|
93
96
|
sky/client/cli/table_utils.py,sha256=HT_y__9_tZLKJ0aJu-hh67cu3NXfWDoiHir5fTmWaDw,10156
|
|
94
|
-
sky/clouds/__init__.py,sha256=
|
|
97
|
+
sky/clouds/__init__.py,sha256=JvZtCgauz5rAids-huDVeeTSyS59aBT1BqMtxvpuD_k,1810
|
|
95
98
|
sky/clouds/aws.py,sha256=PrvbWuSAkPC18HsLVHx8NBJQiduz32NpDm1XXr6NPLo,63737
|
|
96
99
|
sky/clouds/azure.py,sha256=qnabVjfS3em-TvxOIqZ6mMiipnt51MBVf7R0pnyB7bo,33233
|
|
97
100
|
sky/clouds/cloud.py,sha256=2GlEvP8L1GueV8K_02zHWVTkA0A7sOmn1t6iMlEUSus,40160
|
|
@@ -110,6 +113,7 @@ sky/clouds/primeintellect.py,sha256=a-YRUG7k16lolDOOu1xevneP8G6ltwujAVtUVDwxMPQ,
|
|
|
110
113
|
sky/clouds/runpod.py,sha256=MWHV4U313yJ70qogJckLDXm1Z5aV-b4Px8cjEx22sII,16694
|
|
111
114
|
sky/clouds/scp.py,sha256=zXHxLKfe8B90eHNbawNiXxsGsoBDXW5InvM2E7CaRSw,16116
|
|
112
115
|
sky/clouds/seeweb.py,sha256=8Le69T15AUZcF3exBRl7TWJVBiqwnHBprV0zii9p7YE,17747
|
|
116
|
+
sky/clouds/shadeform.py,sha256=qNKf9UsKBxN3eAj80ckcVlkDMHtPff7MY11Q6PaRvNg,16108
|
|
113
117
|
sky/clouds/ssh.py,sha256=-wnX0ea9nHV1hAiHw3sdbFmXrz6XrP-mSEgFE6JWxX0,9996
|
|
114
118
|
sky/clouds/vast.py,sha256=kibPy_zH4KHBdbqIw6I15yd_gDl5tgrT5NC--rBlrOI,12266
|
|
115
119
|
sky/clouds/vsphere.py,sha256=pIMSh7eI-3RbTDUOnFl6lzbRWRtG9KYOsLHg-bdZJ2c,13159
|
|
@@ -119,17 +123,19 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
|
|
|
119
123
|
sky/clouds/utils/gcp_utils.py,sha256=09MF4Vx0EW7S-GXGpyxpl2aQlHrqeu9ioV0nyionAyk,9890
|
|
120
124
|
sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
|
|
121
125
|
sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
|
|
122
|
-
sky/dashboard/out/404.html,sha256=
|
|
123
|
-
sky/dashboard/out/clusters.html,sha256=
|
|
124
|
-
sky/dashboard/out/config.html,sha256=
|
|
126
|
+
sky/dashboard/out/404.html,sha256=V4aqAxUrnbRbLuAUaqCThJcgfAbbW7M3wDej4L4Kphc,1423
|
|
127
|
+
sky/dashboard/out/clusters.html,sha256=9LYYslNNJARkFi8LDOfLFS6JXnhWQ7w2Vuao4b2BXMM,1418
|
|
128
|
+
sky/dashboard/out/config.html,sha256=0sz2gNn6a6y8xTldotMzu5T1RfAx-KbGJcyYyxdeg3w,1414
|
|
125
129
|
sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
|
|
126
|
-
sky/dashboard/out/index.html,sha256=
|
|
127
|
-
sky/dashboard/out/infra.html,sha256=
|
|
128
|
-
sky/dashboard/out/jobs.html,sha256=
|
|
130
|
+
sky/dashboard/out/index.html,sha256=Mjbhg5oXTXTpNbUjOFlQuV2erBLwLONo8pJL9EczkPs,1407
|
|
131
|
+
sky/dashboard/out/infra.html,sha256=tXf2Lh6nL1c7oHqQrfMBm0RJ4tdRqKh3FPqHMGJ4prM,1412
|
|
132
|
+
sky/dashboard/out/jobs.html,sha256=hZEwfxv1Si2BiggKKdq-FqROIKP008HMp3gRDw303hQ,1410
|
|
129
133
|
sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
|
|
130
|
-
sky/dashboard/out/users.html,sha256=
|
|
131
|
-
sky/dashboard/out/volumes.html,sha256=
|
|
132
|
-
sky/dashboard/out/workspaces.html,sha256=
|
|
134
|
+
sky/dashboard/out/users.html,sha256=ND3l2pvpIlkZTg4vc5FKFevf5BMMnmLYzKz5wEOfSpY,1412
|
|
135
|
+
sky/dashboard/out/volumes.html,sha256=vx_LdaBZg5wy7Q7vy24Dv-oagHB5UmPeK36T4NWuML4,1416
|
|
136
|
+
sky/dashboard/out/workspaces.html,sha256=KvXwsmUGZIG-DuKKdk8maJxdtqgv8qlRYTew433bOuk,1422
|
|
137
|
+
sky/dashboard/out/_next/static/MtlDUf-nH1hhcy7xwbCj3/_buildManifest.js,sha256=1ombZKzLAegWk-mEKBFMtiwI-xk8sWY2rYidGQBNj7Y,2394
|
|
138
|
+
sky/dashboard/out/_next/static/MtlDUf-nH1hhcy7xwbCj3/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
133
139
|
sky/dashboard/out/_next/static/chunks/1121-d0782b9251f0fcd3.js,sha256=jIvnDxaTleAz3HdZK9-RScSB0ZMg8-D63KQmn8avaHI,8883
|
|
134
140
|
sky/dashboard/out/_next/static/chunks/1141-3b40c39626f99c89.js,sha256=M5vM2c9SRPEly-CQj0Vj7wJzyFSyuALDik9KFLXWmec,18285
|
|
135
141
|
sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
|
|
@@ -165,7 +171,7 @@ sky/dashboard/out/_next/static/chunks/framework-cf60a09ccd051a10.js,sha256=_Qbam
|
|
|
165
171
|
sky/dashboard/out/_next/static/chunks/main-app-587214043926b3cc.js,sha256=t7glRfataAjNw691Wni-ZU4a3BsygRzPKoI8NOm-lsY,116244
|
|
166
172
|
sky/dashboard/out/_next/static/chunks/main-f15ccb73239a3bf1.js,sha256=jxOPLDVX3rkMc_jvGx2a-N2v6mvfOa8O6V0o-sLT0tI,110208
|
|
167
173
|
sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
168
|
-
sky/dashboard/out/_next/static/chunks/webpack-
|
|
174
|
+
sky/dashboard/out/_next/static/chunks/webpack-ac3a34c8f9fef041.js,sha256=lB59I24ZAyv24WfqSZkvHAqb98mvwQCOjNwZoA8CUrw,4770
|
|
169
175
|
sky/dashboard/out/_next/static/chunks/pages/_app-ce361c6959bc2001.js,sha256=mllo4Yasw61zRtEO49uE_MrAutg9josSJShD0DNSjf0,95518
|
|
170
176
|
sky/dashboard/out/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
|
171
177
|
sky/dashboard/out/_next/static/chunks/pages/clusters-2f61f65487f6d8ff.js,sha256=oo_EAAsi1TLXO-art_64PTCZjakwl-7wVUZnB3-SJK8,869
|
|
@@ -184,16 +190,14 @@ sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-bc979970c247d8f3.j
|
|
|
184
190
|
sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
|
|
185
191
|
sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-e8688c35c06f0ac5.js,sha256=TVmk0pD0iszL39u2Ru56HLEFFLO648NeT2KbEcW5X5o,1495
|
|
186
192
|
sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
|
|
187
|
-
sky/dashboard/out/
|
|
188
|
-
sky/dashboard/out/
|
|
189
|
-
sky/dashboard/out/
|
|
190
|
-
sky/dashboard/out/
|
|
191
|
-
sky/dashboard/out/
|
|
192
|
-
sky/dashboard/out/jobs/[job].html,sha256=gIz3O1a9ZbJe4TivYtjqt6mRzGiSVA2DAZ3Vo-uwYXs,2305
|
|
193
|
-
sky/dashboard/out/jobs/pools/[pool].html,sha256=mhJcWfthFR4Oh1IlmVKG9DwA7w3VhYXau1c1BXUnMV4,2143
|
|
193
|
+
sky/dashboard/out/clusters/[cluster].html,sha256=-CmOYvnyNiRsGogHSSaAUKy9p_iV2Q3fxHvMuG1mPP0,2937
|
|
194
|
+
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=CS-qjroQd00_DOrtKoIpce6ngYztU-xpEdpo86MxtTc,2073
|
|
195
|
+
sky/dashboard/out/infra/[context].html,sha256=7KL_0iVB9rU_fcAPwwPbH52ExUXzHLxh2UBj5Wuq7rQ,1436
|
|
196
|
+
sky/dashboard/out/jobs/[job].html,sha256=pX-vKTTzVAotSnjz9LNId-ybFLekNZ3wESUD47F1YXo,2305
|
|
197
|
+
sky/dashboard/out/jobs/pools/[pool].html,sha256=1DQ3LFYsxACamVxBuIiy8LhD-D1wVsY-J3ZjUt-sIbI,2143
|
|
194
198
|
sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
|
|
195
|
-
sky/dashboard/out/workspace/new.html,sha256=
|
|
196
|
-
sky/dashboard/out/workspaces/[name].html,sha256=
|
|
199
|
+
sky/dashboard/out/workspace/new.html,sha256=Q1OPJr9g6E6U-sq4nPvIv60XJ_yuqfDI7qq9VQr4XCo,1428
|
|
200
|
+
sky/dashboard/out/workspaces/[name].html,sha256=XVdO3DZ2Q2ur_5K1MADhzBWlPGCglevAIXiqasAQqJw,2759
|
|
197
201
|
sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
|
|
198
202
|
sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
|
|
199
203
|
sky/data/data_utils.py,sha256=AjEA_JRjo9NBMlv-Lq5iV4lBED_YZ1VqBR9pG6fGVWE,35179
|
|
@@ -220,7 +224,7 @@ sky/logs/aws.py,sha256=NLl_Ekxcdt6tnh1CufEzPvCch3yyLBSetn4QtBdDKUc,9621
|
|
|
220
224
|
sky/logs/gcp.py,sha256=eKVEcHO3FJRg_YTcE9omE8uAIF6AdBWWpkEPqWFAqXg,3857
|
|
221
225
|
sky/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
222
226
|
sky/metrics/utils.py,sha256=AXsUG00hoEKwPjdZHQWIvTfEVagoNo7zBvy1EK9fD90,13947
|
|
223
|
-
sky/provision/__init__.py,sha256
|
|
227
|
+
sky/provision/__init__.py,sha256=JWdDenDcujRsvq2K6RFyk6SjLl0iAvlHfQIt0XPHdjU,9011
|
|
224
228
|
sky/provision/common.py,sha256=LdjM9SL9NDtsARom12tVv_WoUNL3PTlU5RoLfeWGGgM,10807
|
|
225
229
|
sky/provision/constants.py,sha256=oc_XDUkcoLQ_lwDy5yMeMSWviKS0j0s1c0pjlvpNeWY,800
|
|
226
230
|
sky/provision/docker_utils.py,sha256=DLot-fMAg7bQh_cgpcXjlD3tBvcOGbfyBezX-DzKHAM,24786
|
|
@@ -307,6 +311,10 @@ sky/provision/scp/instance.py,sha256=22kwBma9RyC8yCDVm62TaSSreRAflv3BvaD3NWvNpSs
|
|
|
307
311
|
sky/provision/seeweb/__init__.py,sha256=5X91Xj_uvSAQxodo22ucdySlghLrCP8MsnJhaaRs7OE,558
|
|
308
312
|
sky/provision/seeweb/config.py,sha256=akaKL7A92blSTAekURUYAapiL9a569xVQ28iRLGwcn8,333
|
|
309
313
|
sky/provision/seeweb/instance.py,sha256=auiluvPwU4x7BnUne2JozW7h0q72IVSo8YsnWwBIN1M,31940
|
|
314
|
+
sky/provision/shadeform/__init__.py,sha256=Rk1X4al6D8Q5o9Csb3R50mbK1t6lIsoQqApFXUD4FZY,575
|
|
315
|
+
sky/provision/shadeform/config.py,sha256=YvgyecOA8c2drILdde-IGzgfLy5gUc68F2xm6iylZKA,325
|
|
316
|
+
sky/provision/shadeform/instance.py,sha256=rSpwzEN8E4FCdtpJMXPijxVQCrvTb35a5u5bJ3nGYlI,13415
|
|
317
|
+
sky/provision/shadeform/shadeform_utils.py,sha256=SgkXTSDvfCRbcATDj2BRpmwakCl6Mux0nt_5I54rNxQ,2489
|
|
310
318
|
sky/provision/ssh/__init__.py,sha256=jLQEBTOBMBO11ER9PnY1U2aMCJx7_TEFoaoa5nDHX34,917
|
|
311
319
|
sky/provision/vast/__init__.py,sha256=iuTyc9Ib3x8Rm5kMvciydkUBEs19fititGdPsXRCr4E,487
|
|
312
320
|
sky/provision/vast/config.py,sha256=Aa57fKITHvNiXkY0ADoiK6YYRNG6ND9vOC7ueETJIr0,319
|
|
@@ -388,7 +396,7 @@ sky/server/constants.py,sha256=XkwSIXR0wSJhopbtGwxYTHJZWYQ2UmpgrgZ1YQRB8SI,2615
|
|
|
388
396
|
sky/server/daemons.py,sha256=XQdqRMVyxyqS9fY2HLqW_cxVR6qgqoQ7irPvRYWvG7E,9092
|
|
389
397
|
sky/server/metrics.py,sha256=8mTyD-zo2gyAJSPJyCtTR8oImeFJ2K-sAdlje5Bf5U4,5781
|
|
390
398
|
sky/server/rest.py,sha256=295lCvmAJhGTaal2P00ab6z0fxGj4KfxdI94E-2AhQA,14414
|
|
391
|
-
sky/server/server.py,sha256=
|
|
399
|
+
sky/server/server.py,sha256=ElgWe7iUlemZjJfEgKFE_y6-qJpG0quLL6u1YVSKINM,84686
|
|
392
400
|
sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
|
|
393
401
|
sky/server/stream_utils.py,sha256=V_sZWx9ppPHo4YuoN21zT6asttQlTnF2hb3FgmfpIMY,12136
|
|
394
402
|
sky/server/uvicorn.py,sha256=lJROnpJqoZr59zGwYa_pUniV7rEwmZn0PV4t-YYY-yo,11832
|
|
@@ -401,7 +409,7 @@ sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
|
|
|
401
409
|
sky/server/html/token_page.html,sha256=eUndS5u1foL9vaWGPRTLMt7lCzD1g0wYJ2v_EeeFzlc,7046
|
|
402
410
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
403
411
|
sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
|
|
404
|
-
sky/server/requests/executor.py,sha256=
|
|
412
|
+
sky/server/requests/executor.py,sha256=kA99hFuMsl1VrvPoCVGbsURRcjctAgpi-NLCqNU6tgI,35123
|
|
405
413
|
sky/server/requests/payloads.py,sha256=nhOGOk-AZApLQBdKLRAtQ3MF7WkJxBA-ZAuF9nMsCxk,28093
|
|
406
414
|
sky/server/requests/preconditions.py,sha256=En-mSIe8JXDkiRCMlpgyJGFgYDnhthGReihV5u0oqy8,7283
|
|
407
415
|
sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
|
|
@@ -414,14 +422,14 @@ sky/server/requests/serializers/decoders.py,sha256=4V3muIPH_QU_CfGyoHD99IXuJbKZK
|
|
|
414
422
|
sky/server/requests/serializers/encoders.py,sha256=kEGUqUDx5mpc2DBxhzcGrSP325R1aMPg5NXUVScXfUs,8425
|
|
415
423
|
sky/setup_files/MANIFEST.in,sha256=4gbgHHwSdP6BbMJv5XOt-2K6wUVWF_T9CGsdESvh918,776
|
|
416
424
|
sky/setup_files/alembic.ini,sha256=854_UKvCaFmZ8vI16tSHbGgP9IMFQ42Td6c9Zmn2Oxs,5079
|
|
417
|
-
sky/setup_files/dependencies.py,sha256=
|
|
425
|
+
sky/setup_files/dependencies.py,sha256=fRx8VgQATr9VmMVoLepBXdC13D7cEUguDxgh1RO3adU,8962
|
|
418
426
|
sky/setup_files/setup.py,sha256=4M8u9Y4wwmFCJk-EfsnMWtpNq7ynzqbjdVTKW3w5GXA,7820
|
|
419
427
|
sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
|
|
420
428
|
sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
421
429
|
sky/skylet/attempt_skylet.py,sha256=BbnCgMDGc1wxZx6Olp7ezhsXC0E1aYhmfug-9NrJ00g,2137
|
|
422
430
|
sky/skylet/autostop_lib.py,sha256=2eab980ckQ5dA2DFAJlI5bAJ6EI7YI-JSlzFoTA9XwU,9698
|
|
423
431
|
sky/skylet/configs.py,sha256=nNBnpuzoU696FbC3Nv0qKVSDuTw4GAbr7eCcg0_Sldo,2135
|
|
424
|
-
sky/skylet/constants.py,sha256=
|
|
432
|
+
sky/skylet/constants.py,sha256=5GkKeyopg2aLIPqaNjLrONktCvdR-pUy6_50W-L4D2g,25318
|
|
425
433
|
sky/skylet/events.py,sha256=2vlMyR1Df3zB6ggBJNN2lUunH6x-n-m-nvsHuTwQpXc,16481
|
|
426
434
|
sky/skylet/job_lib.py,sha256=_BlkEQhsTIBfPOaIDVshMTNQPSgkRaNFk5HrP0aH7Qc,53226
|
|
427
435
|
sky/skylet/log_lib.py,sha256=OnJ06_ySnNwXJgp9YoYfTyU60eZFd-eeG7fyGWoMpTw,32042
|
|
@@ -475,6 +483,7 @@ sky/templates/primeintellect-ray.yml.j2,sha256=XgX3btMxxlGKzlUvOv4ZfM820vEfFSp4k
|
|
|
475
483
|
sky/templates/runpod-ray.yml.j2,sha256=H0IICV3Y5PGq40a3AMqa4PIbSKF0eGtZvY-zFEUeu1A,4921
|
|
476
484
|
sky/templates/scp-ray.yml.j2,sha256=48b_mKtkx_fyEPQUQ_i6YMmylrtGbvIIUkQsuvgTU3I,3481
|
|
477
485
|
sky/templates/seeweb-ray.yml.j2,sha256=7-ZgSIjaWxVlDMtrGYXNwpU8cJYiA5tMs82xaBC89W8,3280
|
|
486
|
+
sky/templates/shadeform-ray.yml.j2,sha256=BlWM5wMrHQPT6LY05Qoa2MawTn294XKEbHglE1GVRK4,3057
|
|
478
487
|
sky/templates/sky-serve-controller.yaml.j2,sha256=mmSjeGXro-DSDAz55uqKjBa3axd5tXjgUaIPvXIWP-4,2746
|
|
479
488
|
sky/templates/skypilot-server-kubernetes-proxy.sh,sha256=n5swq5LauF9dnhDWMYqFFHkXeJ44Zjmg1RVbF60jNbE,1079
|
|
480
489
|
sky/templates/vast-ray.yml.j2,sha256=Kjq8AtfL86VllOB8vDSnZeKsyv4QJV-80diXO2xuB6g,3020
|
|
@@ -502,7 +511,7 @@ sky/utils/common.py,sha256=yJc110y8rwcBIKEJgb8kUD4e1OeolFEVtonwmqtAxCM,2729
|
|
|
502
511
|
sky/utils/common_utils.py,sha256=3p-x8pU5tAFxJ95eW-KpY-aRPTGqL6ZvMbUO_iSiPVM,39147
|
|
503
512
|
sky/utils/config_utils.py,sha256=agfDWJi79DH5XKD_GBvUwhRwmB0-ZkYbKCjcEgV6gP4,13861
|
|
504
513
|
sky/utils/context.py,sha256=N_kxD3NXBGRqzb8QsSkrGLvqBt_dD7bIkyerGIOJEcE,13394
|
|
505
|
-
sky/utils/context_utils.py,sha256=
|
|
514
|
+
sky/utils/context_utils.py,sha256=vJuSghG9vUeOr9SLRrGkO5KmtW-za-gzCY-Vw7GOoIM,7520
|
|
506
515
|
sky/utils/control_master_utils.py,sha256=iD4M0onjYOdZ2RuxjwMBl4KhafHXJzuHjvqlBUnu-VE,1450
|
|
507
516
|
sky/utils/controller_utils.py,sha256=iQn1J-y3UTljpjhUPBfMXGfcmapMALsZ0Rut8H1fqHU,60425
|
|
508
517
|
sky/utils/dag_utils.py,sha256=kPakbl9CVo1RECow7QHnp8Am-qLiTUWEcIPIUBKN1JQ,8563
|
|
@@ -566,9 +575,9 @@ sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
566
575
|
sky/workspaces/core.py,sha256=kRrdh-8MhX1953pML1B_DoStnDuNrsmHcZlnWoAxVo0,27218
|
|
567
576
|
sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
|
|
568
577
|
sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
|
|
569
|
-
skypilot_nightly-1.0.0.
|
|
570
|
-
skypilot_nightly-1.0.0.
|
|
571
|
-
skypilot_nightly-1.0.0.
|
|
572
|
-
skypilot_nightly-1.0.0.
|
|
573
|
-
skypilot_nightly-1.0.0.
|
|
574
|
-
skypilot_nightly-1.0.0.
|
|
578
|
+
skypilot_nightly-1.0.0.dev20251013.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
|
579
|
+
skypilot_nightly-1.0.0.dev20251013.dist-info/METADATA,sha256=2oNyXRy67sQjVTAp1zdHZcz6mYzy3YwjAcUzRScHGG8,20585
|
|
580
|
+
skypilot_nightly-1.0.0.dev20251013.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
581
|
+
skypilot_nightly-1.0.0.dev20251013.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
|
582
|
+
skypilot_nightly-1.0.0.dev20251013.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
|
583
|
+
skypilot_nightly-1.0.0.dev20251013.dist-info/RECORD,,
|
/sky/dashboard/out/_next/static/{yOfMelBaFp8uL5F9atyAK → MtlDUf-nH1hhcy7xwbCj3}/_buildManifest.js
RENAMED
|
File without changes
|
/sky/dashboard/out/_next/static/{yOfMelBaFp8uL5F9atyAK → MtlDUf-nH1hhcy7xwbCj3}/_ssgManifest.js
RENAMED
|
File without changes
|
{skypilot_nightly-1.0.0.dev20251012.dist-info → skypilot_nightly-1.0.0.dev20251013.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|