skypilot-nightly 1.0.0.dev20240911__py3-none-any.whl → 1.0.0.dev20240912__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 = 'bad7dabf372f3512679098f63e4cfca8bc9b0870'
8
+ _SKYPILOT_COMMIT_SHA = '49b27fc889efa20ca688909b624f01da214a7be8'
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.dev20240911'
38
+ __version__ = '1.0.0.dev20240912'
39
39
  __root_dir__ = os.path.dirname(os.path.abspath(__file__))
40
40
 
41
41
 
sky/clouds/aws.py CHANGED
@@ -858,6 +858,12 @@ class AWS(clouds.Cloud):
858
858
  # Quota code not found in the catalog for the chosen instance_type, try provisioning anyway
859
859
  return True
860
860
 
861
+ if aws_utils.use_reservations():
862
+ # When reservations are used, it is possible that a user has
863
+ # reservations for an instance type, but does not have the quota
864
+ # for that instance type. Skipping the quota check in this case.
865
+ return True
866
+
861
867
  client = aws.client('service-quotas', region_name=region)
862
868
  try:
863
869
  response = client.get_service_quota(ServiceCode='ec2',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: skypilot-nightly
3
- Version: 1.0.0.dev20240911
3
+ Version: 1.0.0.dev20240912
4
4
  Summary: SkyPilot: An intercloud broker for the clouds
5
5
  Author: SkyPilot Team
6
6
  License: Apache 2.0
@@ -153,6 +153,7 @@ Requires-Dist: pyvmomi==8.0.1.0.2; extra == "vsphere"
153
153
 
154
154
  ----
155
155
  :fire: *News* :fire:
156
+ - [Sep, 2024] Run and deploy [Pixtral](./llm/pixtral), the first open-source multimodal model from Mistral AI.
156
157
  - [Jul, 2024] [Finetune](./llm/llama-3_1-finetuning/) and [serve](./llm/llama-3_1/) **Llama 3.1** on your infra
157
158
  - [Jun, 2024] Reproduce **GPT** with [llm.c](https://github.com/karpathy/llm.c/discussions/481) on any cloud: [**guide**](./llm/gpt-2/)
158
159
  - [Apr, 2024] Serve and finetune [**Llama 3**](https://skypilot.readthedocs.io/en/latest/gallery/llms/llama-3.html) on any cloud or Kubernetes: [**example**](./llm/llama-3/)
@@ -280,6 +281,7 @@ To learn more, see our [Documentation](https://skypilot.readthedocs.io/en/latest
280
281
  <!-- Keep this section in sync with index.rst in SkyPilot Docs -->
281
282
  Runnable examples:
282
283
  - LLMs on SkyPilot
284
+ - [Pixtral](./llm/pixtral/)
283
285
  - [Llama 3.1 finetuning](./llm/llama-3_1-finetuning/) and [serving](./llm/llama-3_1/)
284
286
  - [GPT-2 via `llm.c`](./llm/gpt-2/)
285
287
  - [Llama 3](./llm/llama-3/)
@@ -1,4 +1,4 @@
1
- sky/__init__.py,sha256=fhs7Vpq83j86uu89M7GafensfNIgToBhdN4BJazMtbU,5588
1
+ sky/__init__.py,sha256=-nmd-U8Khf-VwOCNfdHElLaHZL6aTC9_nIfaAOQUHYA,5588
2
2
  sky/authentication.py,sha256=yvpdkXS9htf-X83DPCiSG3mQ41y0zV1BQ0YgOMgTYBU,20612
3
3
  sky/check.py,sha256=jLMIIJrseaZj1_o5WkbaD9XdyXIlCaT6pyAaIFdhdmA,9079
4
4
  sky/cli.py,sha256=2cOw3lXzRA-uLlEH-eK7N_1VmUpf1LR4Ztu-ZaKu3Is,201673
@@ -39,7 +39,7 @@ sky/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
39
  sky/benchmark/benchmark_state.py,sha256=X8CXmuU9KgsDRhKedhFgjeRMUFWtQsjFs1qECvPG2yg,8723
40
40
  sky/benchmark/benchmark_utils.py,sha256=oJOzJ4fs2sruxYh4Tl1NZ5fi2-3oWfXtoeCIAq2hgjw,26136
41
41
  sky/clouds/__init__.py,sha256=WuNIJEnZmBO72tU5awgaaL3rdvFRSkgaYNNeuY68dXo,1356
42
- sky/clouds/aws.py,sha256=wmU1t9c_ohFtTJYe5IHbH_aeSA7oiFXFx9JmB0QNios,48322
42
+ sky/clouds/aws.py,sha256=6nNwj3MHFzYTonLwx-QmXNvPlNZttS3dr8ULAoN79D0,48615
43
43
  sky/clouds/azure.py,sha256=Yp_a1Lzvq4s47eRMeyVheDv9pC0hSPogCiTMYf-a5ZE,28687
44
44
  sky/clouds/cloud.py,sha256=PPk-Cbf1YbJT8bswcQLtPBtko02OWrRGJKkLzDpytTI,34858
45
45
  sky/clouds/cloud_registry.py,sha256=4yQMv-iBSgyN5aNL4Qxbn0JVE-dkVoEUIgj7S1z9S_Q,955
@@ -270,9 +270,9 @@ sky/utils/kubernetes/k8s_gpu_labeler_job.yaml,sha256=KPqp23B-zQ2SZK03jdHeF9fLTog
270
270
  sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488oMQvhRZWwsj9vBbPUg,3812
271
271
  sky/utils/kubernetes/rsync_helper.sh,sha256=Ma-N9a271fTfdgP5-8XIQL7KPf8IPUo-uY004PCdUFo,747
272
272
  sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=RFLJ3k7MR5UN4SKHykQ0lV9SgXumoULpKYIAt1vh-HU,6560
273
- skypilot_nightly-1.0.0.dev20240911.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
274
- skypilot_nightly-1.0.0.dev20240911.dist-info/METADATA,sha256=Kr7KRepuupsS7tBitFFGDalFe7BukwkNgoaPLxL0YXQ,18870
275
- skypilot_nightly-1.0.0.dev20240911.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
276
- skypilot_nightly-1.0.0.dev20240911.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
277
- skypilot_nightly-1.0.0.dev20240911.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
278
- skypilot_nightly-1.0.0.dev20240911.dist-info/RECORD,,
273
+ skypilot_nightly-1.0.0.dev20240912.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
274
+ skypilot_nightly-1.0.0.dev20240912.dist-info/METADATA,sha256=pbozO5GU_wBUbUHrc4vZ8vCqaHvJWDcVrN7qvNYobUs,19011
275
+ skypilot_nightly-1.0.0.dev20240912.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
276
+ skypilot_nightly-1.0.0.dev20240912.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
277
+ skypilot_nightly-1.0.0.dev20240912.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
278
+ skypilot_nightly-1.0.0.dev20240912.dist-info/RECORD,,