skypilot-nightly 1.0.0.dev20250404__py3-none-any.whl → 1.0.0.dev20250406__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/backends/cloud_vm_ray_backend.py +4 -1
- sky/cli.py +5 -0
- sky/client/cli.py +5 -0
- sky/server/requests/executor.py +6 -0
- {skypilot_nightly-1.0.0.dev20250404.dist-info → skypilot_nightly-1.0.0.dev20250406.dist-info}/METADATA +1 -1
- {skypilot_nightly-1.0.0.dev20250404.dist-info → skypilot_nightly-1.0.0.dev20250406.dist-info}/RECORD +11 -11
- {skypilot_nightly-1.0.0.dev20250404.dist-info → skypilot_nightly-1.0.0.dev20250406.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250404.dist-info → skypilot_nightly-1.0.0.dev20250406.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250404.dist-info → skypilot_nightly-1.0.0.dev20250406.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250404.dist-info → skypilot_nightly-1.0.0.dev20250406.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 = '5025c819176d48aa8643fe9ec058158ce2bece9a'
|
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.dev20250406'
|
39
39
|
__root_dir__ = os.path.dirname(os.path.abspath(__file__))
|
40
40
|
|
41
41
|
|
@@ -655,7 +655,10 @@ class RayCodeGen:
|
|
655
655
|
rclone_flush_script = {rclone_flush_script!r}
|
656
656
|
if run_fn is not None:
|
657
657
|
script = run_fn({gang_scheduling_id}, gang_scheduling_id_to_ip)
|
658
|
-
script
|
658
|
+
if script is not None:
|
659
|
+
script += rclone_flush_script
|
660
|
+
else:
|
661
|
+
script = rclone_flush_script
|
659
662
|
|
660
663
|
if script is not None:
|
661
664
|
sky_env_vars_dict['{constants.SKYPILOT_NUM_GPUS_PER_NODE}'] = {int(math.ceil(num_gpus))!r}
|
sky/cli.py
CHANGED
@@ -3062,10 +3062,15 @@ def _down_or_stop_clusters(
|
|
3062
3062
|
'Letting --all take effect.')
|
3063
3063
|
# We should not remove controllers when --all is specified.
|
3064
3064
|
# Otherwise, it would be very easy to accidentally delete a controller.
|
3065
|
+
|
3066
|
+
# do not select already stopped clusters for stop command.
|
3067
|
+
# stopped clusters are still included for down or autostop commands.
|
3065
3068
|
names = [
|
3066
3069
|
record['name']
|
3067
3070
|
for record in all_clusters
|
3068
3071
|
if controller_utils.Controllers.from_name(record['name']) is None
|
3072
|
+
and (down or idle_minutes_to_autostop is not None or
|
3073
|
+
record['status'] != status_lib.ClusterStatus.STOPPED)
|
3069
3074
|
]
|
3070
3075
|
|
3071
3076
|
clusters = names
|
sky/client/cli.py
CHANGED
@@ -3062,10 +3062,15 @@ def _down_or_stop_clusters(
|
|
3062
3062
|
'Letting --all take effect.')
|
3063
3063
|
# We should not remove controllers when --all is specified.
|
3064
3064
|
# Otherwise, it would be very easy to accidentally delete a controller.
|
3065
|
+
|
3066
|
+
# do not select already stopped clusters for stop command.
|
3067
|
+
# stopped clusters are still included for down or autostop commands.
|
3065
3068
|
names = [
|
3066
3069
|
record['name']
|
3067
3070
|
for record in all_clusters
|
3068
3071
|
if controller_utils.Controllers.from_name(record['name']) is None
|
3072
|
+
and (down or idle_minutes_to_autostop is not None or
|
3073
|
+
record['status'] != status_lib.ClusterStatus.STOPPED)
|
3069
3074
|
]
|
3070
3075
|
|
3071
3076
|
clusters = names
|
sky/server/requests/executor.py
CHANGED
@@ -260,6 +260,12 @@ def _request_execution_wrapper(request_id: str,
|
|
260
260
|
f.flush()
|
261
261
|
except KeyboardInterrupt:
|
262
262
|
logger.info(f'Request {request_id} cancelled by user')
|
263
|
+
# Kill all children processes related to this request.
|
264
|
+
# Each executor handles a single request, so we can safely kill all
|
265
|
+
# children processes related to this request.
|
266
|
+
# This is required as python does not pass the KeyboardInterrupt
|
267
|
+
# to the threads that are not main thread.
|
268
|
+
subprocess_utils.kill_children_processes()
|
263
269
|
_restore_output(original_stdout, original_stderr)
|
264
270
|
return
|
265
271
|
except (Exception, SystemExit) as e: # pylint: disable=broad-except
|
{skypilot_nightly-1.0.0.dev20250404.dist-info → skypilot_nightly-1.0.0.dev20250406.dist-info}/RECORD
RENAMED
@@ -1,8 +1,8 @@
|
|
1
|
-
sky/__init__.py,sha256
|
1
|
+
sky/__init__.py,sha256=-ibaW-4BGwlxLZp_qw3LbKnoK3zRSSoWPrx1Bd0pxHg,6428
|
2
2
|
sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
|
3
3
|
sky/authentication.py,sha256=ND011K_-Ud1dVZF37A9KrwYir_ihJXcHc7iDWmuBc8Q,22872
|
4
4
|
sky/check.py,sha256=PPNQnaaZBA9_aogJpN4gnG4XWnTqkd74c-rBYDkDRDY,16101
|
5
|
-
sky/cli.py,sha256=
|
5
|
+
sky/cli.py,sha256=DOMNgAjK8Iir8nQNoQDG2tIWg9Jf_Gh2DDFqHnjxflU,222727
|
6
6
|
sky/cloud_stores.py,sha256=cmKdSoB4bmwrd-Z1NCZBFb6IIJt0jKVxkGPoX86280s,26606
|
7
7
|
sky/core.py,sha256=G3n6z0dyvoU4FJVGnnTu3kFdu_EtQC1l57er5voRAX0,47926
|
8
8
|
sky/dag.py,sha256=Yl7Ry26Vql5cv4YMz8g9kOUgtoCihJnw7c8NgZYakMY,3242
|
@@ -34,7 +34,7 @@ sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
|
|
34
34
|
sky/backends/__init__.py,sha256=UDjwbUgpTRApbPJnNfR786GadUuwgRk3vsWoVu5RB_c,536
|
35
35
|
sky/backends/backend.py,sha256=4BOqKZ-bwBTpjNnZF4JAHX2m2Iga7EmEn8Ao3tEivaM,7527
|
36
36
|
sky/backends/backend_utils.py,sha256=ndY4IPs1F9QovyiKAnB1FNYGWm52_ylwf_K7wY50cv0,134922
|
37
|
-
sky/backends/cloud_vm_ray_backend.py,sha256=
|
37
|
+
sky/backends/cloud_vm_ray_backend.py,sha256=ICo21xsKd1Ipy_nBHbP2FUWllOmdS0Pvr4mfypSYhXI,252012
|
38
38
|
sky/backends/docker_utils.py,sha256=Hyw1YY20EyghhEbYx6O2FIMDcGkNzBzV9TM7LFynei8,8358
|
39
39
|
sky/backends/local_docker_backend.py,sha256=nSYCjms3HOPjPNOrcCqsUKm1WV3AAovRFjEQ7hcEXW4,17021
|
40
40
|
sky/backends/wheel_utils.py,sha256=meypuMaygSXXjGdXfq6dhWl-OrpAybg9KVRoup4D0wU,9098
|
@@ -43,7 +43,7 @@ sky/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
43
|
sky/benchmark/benchmark_state.py,sha256=X8CXmuU9KgsDRhKedhFgjeRMUFWtQsjFs1qECvPG2yg,8723
|
44
44
|
sky/benchmark/benchmark_utils.py,sha256=7rf-iHt6RXZ_pnBBWOMwcdodHQW69x27xNyx0yVog1U,26385
|
45
45
|
sky/client/__init__.py,sha256=pz6xvVSd9X-gwqbsDL0E9QOojYqM0KAD0j-NCyCIF1k,38
|
46
|
-
sky/client/cli.py,sha256=
|
46
|
+
sky/client/cli.py,sha256=DOMNgAjK8Iir8nQNoQDG2tIWg9Jf_Gh2DDFqHnjxflU,222727
|
47
47
|
sky/client/common.py,sha256=YMgYoSYlV3B_scfCIJRKHvDq6JKvnSvRZDhlRjRmzu0,14780
|
48
48
|
sky/client/sdk.py,sha256=36tvJou2IaG8H5lrqMicv-gSJn6VUDHUtB7V20t4lA8,68620
|
49
49
|
sky/clouds/__init__.py,sha256=OW6mJ-9hpJSBORCgt2LippLQEYZHNfnBW1mooRNNvxo,1416
|
@@ -238,7 +238,7 @@ sky/server/uvicorn.py,sha256=wajwPHJ3IEEP3GMNOCc0S81-1v2qT5F-ejUkLFVhUzk,2953
|
|
238
238
|
sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
|
239
239
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
240
|
sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
|
241
|
-
sky/server/requests/executor.py,sha256=
|
241
|
+
sky/server/requests/executor.py,sha256=txzvCUKLafRzEoY4Snk9xVFbIdw5cnu7_wkHTldQdmE,22085
|
242
242
|
sky/server/requests/payloads.py,sha256=3sF36Z9_PLzpEncW0AplJtOz-_nsn5PJaM5lS-3Y8bw,16558
|
243
243
|
sky/server/requests/preconditions.py,sha256=ipxIb_3JXG6S3-ymcOdqQNb7VDvoPqADxu9ZK7-nQWc,7179
|
244
244
|
sky/server/requests/requests.py,sha256=9ovdQE-zv_Mvc6IbGATHVyQlOxSKjg_OankZbgDVGeE,21338
|
@@ -350,9 +350,9 @@ sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488
|
|
350
350
|
sky/utils/kubernetes/kubernetes_deploy_utils.py,sha256=HPVgNt-wbCVPd9dpDFiA7t2mzQLpjXHJ61eiwRbEr-c,10378
|
351
351
|
sky/utils/kubernetes/rsync_helper.sh,sha256=h4YwrPFf9727CACnMJvF3EyK_0OeOYKKt4su_daKekw,1256
|
352
352
|
sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=Kq1MDygF2IxFmu9FXpCxqucXLmeUrvs6OtRij6XTQbo,6554
|
353
|
-
skypilot_nightly-1.0.0.
|
354
|
-
skypilot_nightly-1.0.0.
|
355
|
-
skypilot_nightly-1.0.0.
|
356
|
-
skypilot_nightly-1.0.0.
|
357
|
-
skypilot_nightly-1.0.0.
|
358
|
-
skypilot_nightly-1.0.0.
|
353
|
+
skypilot_nightly-1.0.0.dev20250406.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
354
|
+
skypilot_nightly-1.0.0.dev20250406.dist-info/METADATA,sha256=9Qpo_hPjwrZ7FQ8TomFA0yZM9Y5oCVtq8tpO1n2d_2Y,18552
|
355
|
+
skypilot_nightly-1.0.0.dev20250406.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
356
|
+
skypilot_nightly-1.0.0.dev20250406.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
357
|
+
skypilot_nightly-1.0.0.dev20250406.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
358
|
+
skypilot_nightly-1.0.0.dev20250406.dist-info/RECORD,,
|
{skypilot_nightly-1.0.0.dev20250404.dist-info → skypilot_nightly-1.0.0.dev20250406.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|