skypilot-nightly 1.0.0.dev20250214__py3-none-any.whl → 1.0.0.dev20250215__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/setup_files/dependencies.py +3 -6
- {skypilot_nightly-1.0.0.dev20250214.dist-info → skypilot_nightly-1.0.0.dev20250215.dist-info}/METADATA +18 -37
- {skypilot_nightly-1.0.0.dev20250214.dist-info → skypilot_nightly-1.0.0.dev20250215.dist-info}/RECORD +8 -8
- {skypilot_nightly-1.0.0.dev20250214.dist-info → skypilot_nightly-1.0.0.dev20250215.dist-info}/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250214.dist-info → skypilot_nightly-1.0.0.dev20250215.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250214.dist-info → skypilot_nightly-1.0.0.dev20250215.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250214.dist-info → skypilot_nightly-1.0.0.dev20250215.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 = '354bbdf3a1d031b350011bc76570cf8c009ecc4a'
|
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.dev20250215'
|
39
39
|
__root_dir__ = os.path.dirname(os.path.abspath(__file__))
|
40
40
|
|
41
41
|
|
sky/setup_files/dependencies.py
CHANGED
@@ -52,15 +52,12 @@ local_ray = [
|
|
52
52
|
|
53
53
|
remote = [
|
54
54
|
# Adopted from ray's setup.py:
|
55
|
-
# https://github.com/ray-project/ray/blob/ray-2.
|
55
|
+
# https://github.com/ray-project/ray/blob/ray-2.9.3/python/setup.py#L251-L252
|
56
56
|
# SkyPilot: != 1.48.0 is required to avoid the error where ray dashboard
|
57
57
|
# fails to start when ray start is called (#2054).
|
58
58
|
# Tracking issue: https://github.com/ray-project/ray/issues/30984
|
59
|
-
'grpcio >= 1.32.0,
|
60
|
-
'grpcio >= 1.42.0,
|
61
|
-
# Original issue: https://github.com/ray-project/ray/issues/33833
|
62
|
-
'grpcio >= 1.32.0, <= 1.51.3, != 1.48.0; python_version < \'3.10\' and sys_platform != \'darwin\'', # noqa:E501 pylint: disable=line-too-long
|
63
|
-
'grpcio >= 1.42.0, <= 1.51.3, != 1.48.0; python_version >= \'3.10\' and sys_platform != \'darwin\'', # noqa:E501 pylint: disable=line-too-long
|
59
|
+
'grpcio >= 1.32.0, != 1.48.0; python_version < \'3.10\'',
|
60
|
+
'grpcio >= 1.42.0, != 1.48.0; python_version >= \'3.10\'',
|
64
61
|
# Adopted from ray's setup.py:
|
65
62
|
# https://github.com/ray-project/ray/blob/ray-2.9.3/python/setup.py#L343
|
66
63
|
'protobuf >= 3.15.3, != 3.19.5',
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: skypilot-nightly
|
3
|
-
Version: 1.0.0.
|
3
|
+
Version: 1.0.0.dev20250215
|
4
4
|
Summary: SkyPilot: An intercloud broker for the clouds
|
5
5
|
Author: SkyPilot Team
|
6
6
|
License: Apache 2.0
|
@@ -83,10 +83,8 @@ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "oci"
|
|
83
83
|
Provides-Extra: kubernetes
|
84
84
|
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "kubernetes"
|
85
85
|
Provides-Extra: remote
|
86
|
-
Requires-Dist: grpcio!=1.48.0
|
87
|
-
Requires-Dist: grpcio!=1.48.0
|
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"
|
86
|
+
Requires-Dist: grpcio!=1.48.0,>=1.32.0; python_version < "3.10" and extra == "remote"
|
87
|
+
Requires-Dist: grpcio!=1.48.0,>=1.42.0; python_version >= "3.10" and extra == "remote"
|
90
88
|
Requires-Dist: protobuf!=3.19.5,>=3.15.3; extra == "remote"
|
91
89
|
Requires-Dist: pydantic!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3; extra == "remote"
|
92
90
|
Provides-Extra: runpod
|
@@ -136,10 +134,8 @@ Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
136
134
|
Requires-Dist: oci; extra == "all"
|
137
135
|
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
138
136
|
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
139
|
-
Requires-Dist: grpcio!=1.48.0
|
140
|
-
Requires-Dist: grpcio!=1.48.0
|
141
|
-
Requires-Dist: grpcio!=1.48.0,<=1.51.3,>=1.32.0; (python_version < "3.10" and sys_platform != "darwin") and extra == "all"
|
142
|
-
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: grpcio!=1.48.0,>=1.32.0; python_version < "3.10" and extra == "all"
|
138
|
+
Requires-Dist: grpcio!=1.48.0,>=1.42.0; python_version >= "3.10" and extra == "all"
|
143
139
|
Requires-Dist: protobuf!=3.19.5,>=3.15.3; extra == "all"
|
144
140
|
Requires-Dist: pydantic!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3; extra == "all"
|
145
141
|
Requires-Dist: runpod>=1.6.1; extra == "all"
|
@@ -176,6 +172,10 @@ Dynamic: summary
|
|
176
172
|
<img alt="Join Slack" src="https://img.shields.io/badge/SkyPilot-Join%20Slack-blue?logo=slack">
|
177
173
|
</a>
|
178
174
|
|
175
|
+
<a href="https://github.com/skypilot-org/skypilot/releases">
|
176
|
+
<img alt="Downloads" src="https://img.shields.io/pypi/dm/skypilot">
|
177
|
+
</a>
|
178
|
+
|
179
179
|
</p>
|
180
180
|
|
181
181
|
<h3 align="center">
|
@@ -184,44 +184,25 @@ Dynamic: summary
|
|
184
184
|
|
185
185
|
----
|
186
186
|
:fire: *News* :fire:
|
187
|
-
- [Feb 2025] Run and
|
188
|
-
- [
|
189
|
-
- [Jan 2025] Launch and
|
187
|
+
- [Feb 2025] Run and serve **DeepSeek-R1 671B** using SkyPilot and SGLang with high throughput: [**example**](./llm/deepseek-r1/)
|
188
|
+
- [Feb 2025] Prepare and serve large-scale image search with **vector databases**: [**blog post**](https://blog.skypilot.co/large-scale-vector-database/), [**example**](./examples/vector_database/)
|
189
|
+
- [Jan 2025] Launch and serve distilled models from **[DeepSeek-R1](https://github.com/deepseek-ai/DeepSeek-R1)** and **[Janus](https://github.com/deepseek-ai/DeepSeek-Janus)** on Kubernetes or any cloud: [**R1 example**](./llm/deepseek-r1-distilled/) and [**Janus example**](./llm/deepseek-janus/)
|
190
190
|
- [Oct 2024] :tada: **SkyPilot crossed 1M+ downloads** :tada:: Thank you to our community! [**Twitter/X**](https://x.com/skypilot_org/status/1844770841718067638)
|
191
|
-
- [Sep 2024] Point,
|
191
|
+
- [Sep 2024] Point, launch and serve **Llama 3.2** on Kubernetes or any cloud: [**example**](./llm/llama-3_2/)
|
192
192
|
- [Sep 2024] Run and deploy [**Pixtral**](./llm/pixtral), the first open-source multimodal model from Mistral AI.
|
193
193
|
- [Jun 2024] Reproduce **GPT** with [llm.c](https://github.com/karpathy/llm.c/discussions/481) on any cloud: [**guide**](./llm/gpt-2/)
|
194
194
|
- [Apr 2024] Serve [**Qwen-110B**](https://qwenlm.github.io/blog/qwen1.5-110b/) on your infra: [**example**](./llm/qwen/)
|
195
|
-
- [Apr 2024]
|
196
|
-
- [Feb 2024] Deploying and scaling [**Gemma**](https://blog.google/technology/developers/gemma-open-models/) with SkyServe: [**example**](./llm/gemma/)
|
197
|
-
- [Feb 2024] Serving [**Code Llama 70B**](https://ai.meta.com/blog/code-llama-large-language-model-coding/) with vLLM and SkyServe: [**example**](./llm/codellama/)
|
198
|
-
- [Dec 2023] [**Mixtral 8x7B**](https://mistral.ai/news/mixtral-of-experts/), a high quality sparse mixture-of-experts model, was released by Mistral AI! Deploy via SkyPilot on any cloud: [**example**](./llm/mixtral/)
|
199
|
-
- [Nov 2023] Using [**Axolotl**](https://github.com/OpenAccess-AI-Collective/axolotl) to finetune Mistral 7B on the cloud (on-demand and spot): [**example**](./llm/axolotl/)
|
195
|
+
- [Apr 2024] Host [**Ollama**](https://github.com/ollama/ollama) on the cloud to deploy LLMs on CPUs and GPUs: [**example**](./llm/ollama/)
|
200
196
|
|
201
|
-
**LLM Finetuning Cookbooks**: Finetuning Llama 2 / Llama 3.1 in your own cloud environment, privately: Llama 2 [**example**](./llm/vicuna-llama-2/) and [**blog**](https://blog.skypilot.co/finetuning-llama2-operational-guide/); Llama 3.1 [**example**](./llm/llama-3_1-finetuning/) and [**blog**](https://blog.skypilot.co/finetune-llama-3_1-on-your-infra/)
|
202
197
|
|
203
|
-
|
204
|
-
<summary>Archived</summary>
|
205
|
-
|
206
|
-
- [Jul 2024] [**Finetune**](./llm/llama-3_1-finetuning/) and [**serve**](./llm/llama-3_1/) **Llama 3.1** on your infra
|
207
|
-
- [Apr 2024] Serve and finetune [**Llama 3**](https://docs.skypilot.co/en/latest/gallery/llms/llama-3.html) on any cloud or Kubernetes: [**example**](./llm/llama-3/)
|
208
|
-
- [Mar 2024] Serve and deploy [**Databricks DBRX**](https://www.databricks.com/blog/introducing-dbrx-new-state-art-open-llm) on your infra: [**example**](./llm/dbrx/)
|
209
|
-
- [Feb 2024] Speed up your LLM deployments with [**SGLang**](https://github.com/sgl-project/sglang) for 5x throughput on SkyServe: [**example**](./llm/sglang/)
|
210
|
-
- [Dec 2023] Using [**LoRAX**](https://github.com/predibase/lorax) to serve 1000s of finetuned LLMs on a single instance in the cloud: [**example**](./llm/lorax/)
|
211
|
-
- [Sep 2023] [**Mistral 7B**](https://mistral.ai/news/announcing-mistral-7b/), a high-quality open LLM, was released! Deploy via SkyPilot on any cloud: [**Mistral docs**](https://docs.mistral.ai/self-deployment/skypilot)
|
212
|
-
- [Sep 2023] Case study: [**Covariant**](https://covariant.ai/) transformed AI development on the cloud using SkyPilot, delivering models 4x faster cost-effectively: [**read the case study**](https://blog.skypilot.co/covariant/)
|
213
|
-
- [Jul 2023] Self-Hosted **Llama-2 Chatbot** on Any Cloud: [**example**](./llm/llama-2/)
|
214
|
-
- [Jun 2023] Serving LLM 24x Faster On the Cloud [**with vLLM**](https://vllm.ai/) and SkyPilot: [**example**](./llm/vllm/), [**blog post**](https://blog.skypilot.co/serving-llm-24x-faster-on-the-cloud-with-vllm-and-skypilot/)
|
215
|
-
- [Apr 2023] [SkyPilot YAMLs](./llm/vicuna/) for finetuning & serving the [Vicuna LLM](https://lmsys.org/blog/2023-03-30-vicuna/) with a single command!
|
216
|
-
|
217
|
-
</details>
|
198
|
+
**LLM Finetuning Cookbooks**: Finetuning Llama 2 / Llama 3.1 in your own cloud environment, privately: Llama 2 [**example**](./llm/vicuna-llama-2/) and [**blog**](https://blog.skypilot.co/finetuning-llama2-operational-guide/); Llama 3.1 [**example**](./llm/llama-3_1-finetuning/) and [**blog**](https://blog.skypilot.co/finetune-llama-3_1-on-your-infra/)
|
218
199
|
|
219
200
|
----
|
220
201
|
|
221
202
|
SkyPilot is a framework for running AI and batch workloads on any infra, offering unified execution, high cost savings, and high GPU availability.
|
222
203
|
|
223
204
|
SkyPilot **abstracts away infra burdens**:
|
224
|
-
- Launch [
|
205
|
+
- Launch [clusters](https://docs.skypilot.co/en/latest/examples/interactive-development.html), [jobs](https://docs.skypilot.co/en/latest/examples/managed-jobs.html), and [serving](https://docs.skypilot.co/en/latest/serving/sky-serve.html) on any infra
|
225
206
|
- Easy job management: queue, run, and auto-recover many jobs
|
226
207
|
|
227
208
|
SkyPilot **supports multiple clusters, clouds, and hardware** ([the Sky](https://arxiv.org/abs/2205.07147)):
|
@@ -313,7 +294,7 @@ SkyPilot then performs the heavy-lifting for you, including:
|
|
313
294
|
Refer to [Quickstart](https://docs.skypilot.co/en/latest/getting-started/quickstart.html) to get started with SkyPilot.
|
314
295
|
|
315
296
|
## More Information
|
316
|
-
To learn more, see [
|
297
|
+
To learn more, see [SkyPilot Overview](https://docs.skypilot.co/en/latest/overview.html), [SkyPilot docs](https://docs.skypilot.co/en/latest/), and [SkyPilot blog](https://blog.skypilot.co/).
|
317
298
|
|
318
299
|
<!-- Keep this section in sync with index.rst in SkyPilot Docs -->
|
319
300
|
Runnable examples:
|
@@ -359,7 +340,7 @@ Read the research:
|
|
359
340
|
- [Sky Computing vision paper](https://sigops.org/s/conferences/hotos/2021/papers/hotos21-s02-stoica.pdf) (HotOS 2021)
|
360
341
|
- [Policy for Managed Spot Jobs](https://www.usenix.org/conference/nsdi24/presentation/wu-zhanghao) (NSDI 2024)
|
361
342
|
|
362
|
-
SkyPilot was initially started at the [Sky Computing Lab](https://sky.cs.berkeley.edu) at UC Berkeley and has since gained many industry contributors.
|
343
|
+
SkyPilot was initially started at the [Sky Computing Lab](https://sky.cs.berkeley.edu) at UC Berkeley and has since gained many industry contributors. To read about the project's origin and vision, see [Concept: Sky Computing](https://docs.skypilot.co/en/latest/sky-computing.html).
|
363
344
|
|
364
345
|
## Support and Questions
|
365
346
|
We are excited to hear your feedback!
|
{skypilot_nightly-1.0.0.dev20250214.dist-info → skypilot_nightly-1.0.0.dev20250215.dist-info}/RECORD
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
sky/__init__.py,sha256=
|
1
|
+
sky/__init__.py,sha256=A9WvRbIF2APLiWFQuaAyh5FXJCmlNyhluArUv3nkI_Y,5560
|
2
2
|
sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
|
3
3
|
sky/authentication.py,sha256=MNc9uHnvQ1EsEl8SsrYcYCGbxcnDbR6gaRCXVNd5RZE,22338
|
4
4
|
sky/check.py,sha256=xzLlxUkBCrzpOho8lw65EvKLPl_b9lA2nteF5MSYbDQ,10885
|
@@ -208,7 +208,7 @@ sky/serve/serve_utils.py,sha256=m1Zcjslnzcr5AAppzV48WDOwMWjRaXotTUd_iN-dHgc,4065
|
|
208
208
|
sky/serve/service.py,sha256=DPU1PJGuHa1WaNqxYqgpmqd4LA9jBbQM-KlLrA6C1M0,12156
|
209
209
|
sky/serve/service_spec.py,sha256=Q0qnFRjNnfGIpksubH5VqPKIlvpWs5had_Ma_PSHyo8,16940
|
210
210
|
sky/setup_files/MANIFEST.in,sha256=WF0T89NLichHxZDDSQzvSpiONtAEFyur2MPmGczgTIo,555
|
211
|
-
sky/setup_files/dependencies.py,sha256=
|
211
|
+
sky/setup_files/dependencies.py,sha256=iCVL37XzDj4PmYjbGtQsq5Nd4BCNKsn_FIIZ4FXck9I,5746
|
212
212
|
sky/setup_files/setup.py,sha256=HMqAIxHrhtQUOlm6_Iz5E_bL4dUvsYgXc9YVQIFayPs,7417
|
213
213
|
sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
|
214
214
|
sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -298,9 +298,9 @@ sky/utils/kubernetes/k8s_gpu_labeler_job.yaml,sha256=k0TBoQ4zgf79-sVkixKSGYFHQ7Z
|
|
298
298
|
sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488oMQvhRZWwsj9vBbPUg,3812
|
299
299
|
sky/utils/kubernetes/rsync_helper.sh,sha256=h4YwrPFf9727CACnMJvF3EyK_0OeOYKKt4su_daKekw,1256
|
300
300
|
sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=Kq1MDygF2IxFmu9FXpCxqucXLmeUrvs6OtRij6XTQbo,6554
|
301
|
-
skypilot_nightly-1.0.0.
|
302
|
-
skypilot_nightly-1.0.0.
|
303
|
-
skypilot_nightly-1.0.0.
|
304
|
-
skypilot_nightly-1.0.0.
|
305
|
-
skypilot_nightly-1.0.0.
|
306
|
-
skypilot_nightly-1.0.0.
|
301
|
+
skypilot_nightly-1.0.0.dev20250215.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
302
|
+
skypilot_nightly-1.0.0.dev20250215.dist-info/METADATA,sha256=gT-Eg0fwPo_B0dWCRD3V7MuaSB-4ZUtYsrzgcfQUVdQ,18853
|
303
|
+
skypilot_nightly-1.0.0.dev20250215.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
304
|
+
skypilot_nightly-1.0.0.dev20250215.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
305
|
+
skypilot_nightly-1.0.0.dev20250215.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
306
|
+
skypilot_nightly-1.0.0.dev20250215.dist-info/RECORD,,
|
File without changes
|
{skypilot_nightly-1.0.0.dev20250214.dist-info → skypilot_nightly-1.0.0.dev20250215.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|