skypilot-nightly 1.0.0.dev20241119__py3-none-any.whl → 1.0.0.dev20241121__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 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 = '6c021970e8b7e7970c31ada02d3a6d90f76b86c6'
8
+ _SKYPILOT_COMMIT_SHA = '627be7298f987ddf6ada7f3c0cf849edde97240a'
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.dev20241119'
38
+ __version__ = '1.0.0.dev20241121'
39
39
  __root_dir__ = os.path.dirname(os.path.abspath(__file__))
40
40
 
41
41
 
@@ -269,6 +269,13 @@ class RayCodeGen:
269
269
  import time
270
270
  from typing import Dict, List, Optional, Tuple, Union
271
271
 
272
+ # Set the environment variables to avoid deduplicating logs and
273
+ # scheduler events. This should be set in driver code, since we are
274
+ # not using `ray job submit` anymore, and the environment variables
275
+ # from the ray cluster is not inherited.
276
+ os.environ['RAY_DEDUP_LOGS'] = '0'
277
+ os.environ['RAY_SCHEDULER_EVENTS'] = '0'
278
+
272
279
  import ray
273
280
  import ray.util as ray_util
274
281
 
sky/clouds/kubernetes.py CHANGED
@@ -536,7 +536,11 @@ class Kubernetes(clouds.Cloud):
536
536
  @classmethod
537
537
  def check_credentials(cls) -> Tuple[bool, Optional[str]]:
538
538
  # Test using python API
539
- existing_allowed_contexts = cls._existing_allowed_contexts()
539
+ try:
540
+ existing_allowed_contexts = cls._existing_allowed_contexts()
541
+ except ImportError as e:
542
+ return (False,
543
+ f'{common_utils.format_exception(e, use_bracket=True)}')
540
544
  if not existing_allowed_contexts:
541
545
  if skypilot_config.loaded_config_path() is None:
542
546
  check_skypilot_config_msg = ''
@@ -277,16 +277,8 @@ def start_ray_on_head_node(cluster_name: str, custom_resource: Optional[str],
277
277
  for key, value in cluster_info.custom_ray_options.items():
278
278
  ray_options += f' --{key}={value}'
279
279
 
280
- # Unset AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY to avoid using credentials
281
- # from environment variables set by user. SkyPilot's ray cluster should use
282
- # the `~/.aws/` credentials, as that is the one used to create the cluster,
283
- # and the autoscaler module started by the `ray start` command should use
284
- # the same credentials. Otherwise, `ray status` will fail to fetch the
285
- # available nodes.
286
- # Reference: https://github.com/skypilot-org/skypilot/issues/2441
287
280
  cmd = (
288
281
  f'{constants.SKY_RAY_CMD} stop; '
289
- 'unset AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY; '
290
282
  'RAY_SCHEDULER_EVENTS=0 RAY_DEDUP_LOGS=0 '
291
283
  # worker_maximum_startup_concurrency controls the maximum number of
292
284
  # workers that can be started concurrently. However, it also controls
@@ -372,7 +364,6 @@ def start_ray_on_worker_nodes(cluster_name: str, no_restart: bool,
372
364
  # Unset AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY, see the comment in
373
365
  # `start_ray_on_head_node`.
374
366
  cmd = (
375
- f'unset AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY; '
376
367
  'RAY_SCHEDULER_EVENTS=0 RAY_DEDUP_LOGS=0 '
377
368
  f'{constants.SKY_RAY_CMD} start --disable-usage-stats {ray_options} || '
378
369
  'exit 1;' + _RAY_PRLIMIT)
@@ -123,8 +123,8 @@ def run_instances(region: str, cluster_name_on_cloud: str,
123
123
  # Let's create additional new nodes (if neccessary)
124
124
  to_start_count = config.count - len(resume_instances)
125
125
  created_instances = []
126
+ node_config = config.node_config
126
127
  if to_start_count > 0:
127
- node_config = config.node_config
128
128
  compartment = query_helper.find_compartment(region)
129
129
  vcn = query_helper.find_create_vcn_subnet(region)
130
130
 
@@ -242,10 +242,12 @@ def run_instances(region: str, cluster_name_on_cloud: str,
242
242
 
243
243
  assert head_instance_id is not None, head_instance_id
244
244
 
245
+ # Format: TenancyPrefix:AvailabilityDomain, e.g. bxtG:US-SANJOSE-1-AD-1
246
+ _, ad = str(node_config['AvailabilityDomain']).split(':', maxsplit=1)
245
247
  return common.ProvisionRecord(
246
248
  provider_name='oci',
247
249
  region=region,
248
- zone=None,
250
+ zone=ad,
249
251
  cluster_name=cluster_name_on_cloud,
250
252
  head_instance_id=head_instance_id,
251
253
  created_instance_ids=[n['inst_id'] for n in created_instances],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: skypilot-nightly
3
- Version: 1.0.0.dev20241119
3
+ Version: 1.0.0.dev20241121
4
4
  Summary: SkyPilot: An intercloud broker for the clouds
5
5
  Author: SkyPilot Team
6
6
  License: Apache 2.0
@@ -33,45 +33,13 @@ Requires-Dist: PrettyTable>=2.0.0
33
33
  Requires-Dist: python-dotenv
34
34
  Requires-Dist: rich
35
35
  Requires-Dist: tabulate
36
- Requires-Dist: typing-extensions
36
+ Requires-Dist: typing_extensions
37
37
  Requires-Dist: filelock>=3.6.0
38
38
  Requires-Dist: packaging
39
39
  Requires-Dist: psutil
40
40
  Requires-Dist: pulp
41
41
  Requires-Dist: pyyaml!=5.4.*,>3.13
42
42
  Requires-Dist: requests
43
- Provides-Extra: all
44
- Requires-Dist: urllib3<2; extra == "all"
45
- Requires-Dist: awscli>=1.27.10; extra == "all"
46
- Requires-Dist: botocore>=1.29.10; extra == "all"
47
- Requires-Dist: boto3>=1.26.1; extra == "all"
48
- Requires-Dist: colorama<0.4.5; extra == "all"
49
- Requires-Dist: azure-cli>=2.65.0; extra == "all"
50
- Requires-Dist: azure-core>=1.31.0; extra == "all"
51
- Requires-Dist: azure-identity>=1.19.0; extra == "all"
52
- Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
53
- Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
54
- Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
55
- Requires-Dist: msgraph-sdk; extra == "all"
56
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
57
- Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
58
- Requires-Dist: google-cloud-storage; extra == "all"
59
- Requires-Dist: ibm-cloud-sdk-core; extra == "all"
60
- Requires-Dist: ibm-vpc; extra == "all"
61
- Requires-Dist: ibm-platform-services; extra == "all"
62
- Requires-Dist: ibm-cos-sdk; extra == "all"
63
- Requires-Dist: docker; extra == "all"
64
- Requires-Dist: oci; extra == "all"
65
- Requires-Dist: kubernetes>=20.0.0; extra == "all"
66
- Requires-Dist: protobuf!=3.19.5,>=3.15.3; extra == "all"
67
- Requires-Dist: pydantic!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3; extra == "all"
68
- Requires-Dist: runpod>=1.5.1; extra == "all"
69
- Requires-Dist: cudo-compute>=0.1.10; extra == "all"
70
- Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
71
- Requires-Dist: grpcio!=1.48.0,<=1.51.3,>=1.32.0; (python_version < "3.10" and sys_platform != "darwin") and extra == "all"
72
- Requires-Dist: grpcio!=1.48.0,<=1.49.1,>=1.32.0; (python_version < "3.10" and sys_platform == "darwin") and extra == "all"
73
- Requires-Dist: grpcio!=1.48.0,<=1.51.3,>=1.42.0; (python_version >= "3.10" and sys_platform != "darwin") and extra == "all"
74
- Requires-Dist: grpcio!=1.48.0,<=1.49.1,>=1.42.0; (python_version >= "3.10" and sys_platform == "darwin") and extra == "all"
75
43
  Provides-Extra: aws
76
44
  Requires-Dist: urllib3<2; extra == "aws"
77
45
  Requires-Dist: awscli>=1.27.10; extra == "aws"
@@ -87,18 +55,6 @@ Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "azure"
87
55
  Requires-Dist: azure-storage-blob>=12.23.1; extra == "azure"
88
56
  Requires-Dist: msgraph-sdk; extra == "azure"
89
57
  Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "azure"
90
- Provides-Extra: cloudflare
91
- Requires-Dist: urllib3<2; extra == "cloudflare"
92
- Requires-Dist: awscli>=1.27.10; extra == "cloudflare"
93
- Requires-Dist: botocore>=1.29.10; extra == "cloudflare"
94
- Requires-Dist: boto3>=1.26.1; extra == "cloudflare"
95
- Requires-Dist: colorama<0.4.5; extra == "cloudflare"
96
- Provides-Extra: cudo
97
- Requires-Dist: cudo-compute>=0.1.10; extra == "cudo"
98
- Provides-Extra: docker
99
- Requires-Dist: docker; extra == "docker"
100
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "docker"
101
- Provides-Extra: fluidstack
102
58
  Provides-Extra: gcp
103
59
  Requires-Dist: google-api-python-client>=2.69.0; extra == "gcp"
104
60
  Requires-Dist: google-cloud-storage; extra == "gcp"
@@ -108,27 +64,81 @@ Requires-Dist: ibm-vpc; extra == "ibm"
108
64
  Requires-Dist: ibm-platform-services; extra == "ibm"
109
65
  Requires-Dist: ibm-cos-sdk; extra == "ibm"
110
66
  Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "ibm"
111
- Provides-Extra: kubernetes
112
- Requires-Dist: kubernetes>=20.0.0; extra == "kubernetes"
67
+ Provides-Extra: docker
68
+ Requires-Dist: docker; extra == "docker"
69
+ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "docker"
113
70
  Provides-Extra: lambda
114
71
  Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "lambda"
72
+ Provides-Extra: cloudflare
73
+ Requires-Dist: urllib3<2; extra == "cloudflare"
74
+ Requires-Dist: awscli>=1.27.10; extra == "cloudflare"
75
+ Requires-Dist: botocore>=1.29.10; extra == "cloudflare"
76
+ Requires-Dist: boto3>=1.26.1; extra == "cloudflare"
77
+ Requires-Dist: colorama<0.4.5; extra == "cloudflare"
78
+ Provides-Extra: scp
79
+ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "scp"
115
80
  Provides-Extra: oci
116
81
  Requires-Dist: oci; extra == "oci"
117
82
  Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "oci"
118
- Provides-Extra: paperspace
83
+ Provides-Extra: kubernetes
84
+ Requires-Dist: kubernetes>=20.0.0; extra == "kubernetes"
119
85
  Provides-Extra: remote
120
- Requires-Dist: protobuf!=3.19.5,>=3.15.3; extra == "remote"
121
- Requires-Dist: pydantic!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3; extra == "remote"
122
- Requires-Dist: grpcio!=1.48.0,<=1.51.3,>=1.32.0; (python_version < "3.10" and sys_platform != "darwin") and extra == "remote"
123
86
  Requires-Dist: grpcio!=1.48.0,<=1.49.1,>=1.32.0; (python_version < "3.10" and sys_platform == "darwin") and extra == "remote"
124
- Requires-Dist: grpcio!=1.48.0,<=1.51.3,>=1.42.0; (python_version >= "3.10" and sys_platform != "darwin") and extra == "remote"
125
87
  Requires-Dist: grpcio!=1.48.0,<=1.49.1,>=1.42.0; (python_version >= "3.10" and sys_platform == "darwin") and extra == "remote"
88
+ Requires-Dist: grpcio!=1.48.0,<=1.51.3,>=1.32.0; (python_version < "3.10" and sys_platform != "darwin") and extra == "remote"
89
+ Requires-Dist: grpcio!=1.48.0,<=1.51.3,>=1.42.0; (python_version >= "3.10" and sys_platform != "darwin") and extra == "remote"
90
+ Requires-Dist: protobuf!=3.19.5,>=3.15.3; extra == "remote"
91
+ Requires-Dist: pydantic!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3; extra == "remote"
126
92
  Provides-Extra: runpod
127
93
  Requires-Dist: runpod>=1.5.1; extra == "runpod"
128
- Provides-Extra: scp
129
- Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "scp"
94
+ Provides-Extra: fluidstack
95
+ Provides-Extra: cudo
96
+ Requires-Dist: cudo-compute>=0.1.10; extra == "cudo"
97
+ Provides-Extra: paperspace
130
98
  Provides-Extra: vsphere
131
99
  Requires-Dist: pyvmomi==8.0.1.0.2; extra == "vsphere"
100
+ Provides-Extra: all
101
+ Requires-Dist: urllib3<2; extra == "all"
102
+ Requires-Dist: awscli>=1.27.10; extra == "all"
103
+ Requires-Dist: botocore>=1.29.10; extra == "all"
104
+ Requires-Dist: boto3>=1.26.1; extra == "all"
105
+ Requires-Dist: colorama<0.4.5; extra == "all"
106
+ Requires-Dist: azure-cli>=2.65.0; extra == "all"
107
+ Requires-Dist: azure-core>=1.31.0; extra == "all"
108
+ Requires-Dist: azure-identity>=1.19.0; extra == "all"
109
+ Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
110
+ Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
111
+ Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
112
+ Requires-Dist: msgraph-sdk; extra == "all"
113
+ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
114
+ Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
115
+ Requires-Dist: google-cloud-storage; extra == "all"
116
+ Requires-Dist: ibm-cloud-sdk-core; extra == "all"
117
+ Requires-Dist: ibm-vpc; extra == "all"
118
+ Requires-Dist: ibm-platform-services; extra == "all"
119
+ Requires-Dist: ibm-cos-sdk; extra == "all"
120
+ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
121
+ Requires-Dist: docker; extra == "all"
122
+ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
123
+ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
124
+ Requires-Dist: urllib3<2; extra == "all"
125
+ Requires-Dist: awscli>=1.27.10; extra == "all"
126
+ Requires-Dist: botocore>=1.29.10; extra == "all"
127
+ Requires-Dist: boto3>=1.26.1; extra == "all"
128
+ Requires-Dist: colorama<0.4.5; extra == "all"
129
+ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
130
+ Requires-Dist: oci; extra == "all"
131
+ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
132
+ Requires-Dist: kubernetes>=20.0.0; extra == "all"
133
+ Requires-Dist: grpcio!=1.48.0,<=1.49.1,>=1.32.0; (python_version < "3.10" and sys_platform == "darwin") and extra == "all"
134
+ Requires-Dist: grpcio!=1.48.0,<=1.49.1,>=1.42.0; (python_version >= "3.10" and sys_platform == "darwin") and extra == "all"
135
+ Requires-Dist: grpcio!=1.48.0,<=1.51.3,>=1.32.0; (python_version < "3.10" and sys_platform != "darwin") and extra == "all"
136
+ Requires-Dist: grpcio!=1.48.0,<=1.51.3,>=1.42.0; (python_version >= "3.10" and sys_platform != "darwin") and extra == "all"
137
+ Requires-Dist: protobuf!=3.19.5,>=3.15.3; extra == "all"
138
+ Requires-Dist: pydantic!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3; extra == "all"
139
+ Requires-Dist: runpod>=1.5.1; extra == "all"
140
+ Requires-Dist: cudo-compute>=0.1.10; extra == "all"
141
+ Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
132
142
 
133
143
  <p align="center">
134
144
  <img alt="SkyPilot" src="https://raw.githubusercontent.com/skypilot-org/skypilot/master/docs/source/images/skypilot-wide-light-1k.png" width=55%>
@@ -1,4 +1,4 @@
1
- sky/__init__.py,sha256=eD3o6kncHFCHZXjZ_uhm09Lrfbj6MeACrOkR9tHXhio,5882
1
+ sky/__init__.py,sha256=SCQV-Q-BPSS_Xa37LmEJ5zO8u_tBijR-C7U6m9OAVAQ,5882
2
2
  sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
3
3
  sky/authentication.py,sha256=pAdCT60OxxiXI9KXDyP2lQ9u9vMc6aMtq5Xi2h_hbdw,20984
4
4
  sky/check.py,sha256=D3Y3saIFAYVvPxuBHnVgJEO0fUVDxgjwuMBaO-D778k,9472
@@ -31,7 +31,7 @@ sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
31
31
  sky/backends/__init__.py,sha256=UDjwbUgpTRApbPJnNfR786GadUuwgRk3vsWoVu5RB_c,536
32
32
  sky/backends/backend.py,sha256=wwfbrxPhjMPs6PSyy3tAHI8WJhl-xhgzWBsAZjmJJ6g,6249
33
33
  sky/backends/backend_utils.py,sha256=vese_H1lOFL40r-LPhjqqM8OlgICDgEW-YtNQ95cYs8,125608
34
- sky/backends/cloud_vm_ray_backend.py,sha256=REJ8bSe-QJzlytFes7hmxb3Nmx--zC7y3JDB2PAwv3Q,232316
34
+ sky/backends/cloud_vm_ray_backend.py,sha256=aeb45nVxAqiku2AU66CRd9-UK4b9nqoZYSL8z2kYOnI,232706
35
35
  sky/backends/docker_utils.py,sha256=Hyw1YY20EyghhEbYx6O2FIMDcGkNzBzV9TM7LFynei8,8358
36
36
  sky/backends/local_docker_backend.py,sha256=0JL5m0YUgOmOL4aWEUe4tmt89dsxjk4_WXkPwgEKEis,16801
37
37
  sky/backends/wheel_utils.py,sha256=CUVOwlBtQjOMv-RSDGx2jMQ0M1D0w9ZPm0TDafJwBDI,8180
@@ -48,7 +48,7 @@ sky/clouds/cudo.py,sha256=UiY273Sln7VOYDYx93yWiWH_RLlOKZ2cm7mA31ld4A8,13094
48
48
  sky/clouds/fluidstack.py,sha256=ufve4wXo_VmaEkxqTw2Jnt-DORBDRnqUPU1kB_mD89s,12383
49
49
  sky/clouds/gcp.py,sha256=BjCehW3s0IYkRDdEEDm0vYWXQDpOV8KU98OMVRPnQNg,54676
50
50
  sky/clouds/ibm.py,sha256=w8bo1EIY_YWYNu0fy-OpAyr6DZviU0tpIXUsiV01rVE,21423
51
- sky/clouds/kubernetes.py,sha256=WoSCJXNRTp167Y2UFWTMTTmPih4rwZ8njQaUkl9QDww,29436
51
+ sky/clouds/kubernetes.py,sha256=EuHD_xl5pbW2_9lPNuNdxss2X4DPbHnnD0VoiereshI,29590
52
52
  sky/clouds/lambda_cloud.py,sha256=ExL_uixdFrF9qSL5JYXpaOXCZ9_eOA2q444kcmBHBXQ,12644
53
53
  sky/clouds/oci.py,sha256=KAu32FFM3rB1Ngp8vJmVxxwNpmAmgrzTDV0FIof3MKI,26525
54
54
  sky/clouds/paperspace.py,sha256=4cjNua6jpuxmfidvLY4tSRX1oj_QaaHDinPMunGplyU,10868
@@ -107,7 +107,7 @@ sky/provision/__init__.py,sha256=rnuwL9x3qQGhX3EYW6KyZWfw_yBqGSiFBDz86T5xus4,633
107
107
  sky/provision/common.py,sha256=E8AlSUFcn0FYQq1erNmoVfMAdsF9tP2yxfyk-9PLvQU,10286
108
108
  sky/provision/constants.py,sha256=oc_XDUkcoLQ_lwDy5yMeMSWviKS0j0s1c0pjlvpNeWY,800
109
109
  sky/provision/docker_utils.py,sha256=l4AMzwXGZd8RyNq8AwOaKV9bFSofLYfSyj2NBhkXYsY,19200
110
- sky/provision/instance_setup.py,sha256=gI739UMCqtPqdA522D92bPu5sA3OHBMDmIGmqqxsIwY,23652
110
+ sky/provision/instance_setup.py,sha256=UBuVHjQ7f80un7aLY-kCLR0CCNVx-qIq1bh06nxuwJk,23050
111
111
  sky/provision/logging.py,sha256=yZWgejrFBhhRjAtvFu5N5bRXIMK5TuwNjp1vKQqz2pw,2103
112
112
  sky/provision/metadata_utils.py,sha256=LrxeV4wD2QPzNdXV_npj8q-pr35FatxBBjF_jSbpOT0,4013
113
113
  sky/provision/provisioner.py,sha256=mTvtBjS-Xz64LJcyeHx_-wdM8Gin8D49YRaV_TADaz4,25334
@@ -149,7 +149,7 @@ sky/provision/lambda_cloud/instance.py,sha256=5-XuX-KwlRq8y62NXNzY_p6aJs4iCPGBf5
149
149
  sky/provision/lambda_cloud/lambda_utils.py,sha256=wIXV1Qe362f8Q9u8DSx2e9IJs4CF03Jr3idHCzhlRz4,9879
150
150
  sky/provision/oci/__init__.py,sha256=5E6EUtTK3mqGVREw5TuVl5DxteBYTZigIii7c8gHExU,612
151
151
  sky/provision/oci/config.py,sha256=diSDTyHLokcuXGB2XgZCHFvsXa8bah1PP2XuMouW_UU,1650
152
- sky/provision/oci/instance.py,sha256=pbVqb9VsC7bGBKhKi8TkiSu7usN_jSnCQpRMv6WihcM,16584
152
+ sky/provision/oci/instance.py,sha256=hsJa4ItkOI3vU5HpNMrbrge9BmJalSPnxX8SwmFJDhk,16728
153
153
  sky/provision/oci/query_utils.py,sha256=jOTKC7MX8n9YK6ADJuYMooPL9R2mHod4Tgl68Lu8m5Q,28156
154
154
  sky/provision/paperspace/__init__.py,sha256=1nbUPWio7UA5gCQkO_rfEDfgXT17u5OtuByxQx4Ez6g,598
155
155
  sky/provision/paperspace/config.py,sha256=oNmffSt-V466pE0DmML8hOCX1CiA24jAqE5JEKuqpyI,1541
@@ -275,9 +275,9 @@ sky/utils/kubernetes/k8s_gpu_labeler_job.yaml,sha256=k0TBoQ4zgf79-sVkixKSGYFHQ7Z
275
275
  sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488oMQvhRZWwsj9vBbPUg,3812
276
276
  sky/utils/kubernetes/rsync_helper.sh,sha256=hyYDaYSNxYaNvzUQBzC8AidB7nDeojizjkzc_CTxycY,1077
277
277
  sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=RFLJ3k7MR5UN4SKHykQ0lV9SgXumoULpKYIAt1vh-HU,6560
278
- skypilot_nightly-1.0.0.dev20241119.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
279
- skypilot_nightly-1.0.0.dev20241119.dist-info/METADATA,sha256=iYfeGnPlxKUKvgHZ_hLDZH6fHo4ds_XH6kqm56s0iHo,19699
280
- skypilot_nightly-1.0.0.dev20241119.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
281
- skypilot_nightly-1.0.0.dev20241119.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
282
- skypilot_nightly-1.0.0.dev20241119.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
283
- skypilot_nightly-1.0.0.dev20241119.dist-info/RECORD,,
278
+ skypilot_nightly-1.0.0.dev20241121.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
279
+ skypilot_nightly-1.0.0.dev20241121.dist-info/METADATA,sha256=2P9MAo9kQQSy6-t-MITf4Az4j2ucbnnlN6rE1V4aVxs,20222
280
+ skypilot_nightly-1.0.0.dev20241121.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
281
+ skypilot_nightly-1.0.0.dev20241121.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
282
+ skypilot_nightly-1.0.0.dev20241121.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
283
+ skypilot_nightly-1.0.0.dev20241121.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.5.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5