skypilot-nightly 1.0.0.dev20250618__py3-none-any.whl → 1.0.0.dev20250620__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.
Files changed (40) hide show
  1. sky/__init__.py +2 -2
  2. sky/cli.py +2 -2
  3. sky/client/cli/__init__.py +0 -0
  4. sky/client/{cli.py → cli/command.py} +97 -630
  5. sky/client/cli/deprecation_utils.py +99 -0
  6. sky/client/cli/flags.py +342 -0
  7. sky/dashboard/out/404.html +1 -1
  8. sky/dashboard/out/_next/static/chunks/{webpack-ebc2404fd6ce581c.js → webpack-0263b00d6a10e64a.js} +1 -1
  9. sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
  10. sky/dashboard/out/clusters/[cluster].html +1 -1
  11. sky/dashboard/out/clusters.html +1 -1
  12. sky/dashboard/out/config.html +1 -1
  13. sky/dashboard/out/index.html +1 -1
  14. sky/dashboard/out/infra/[context].html +1 -1
  15. sky/dashboard/out/infra.html +1 -1
  16. sky/dashboard/out/jobs/[job].html +1 -1
  17. sky/dashboard/out/jobs.html +1 -1
  18. sky/dashboard/out/users.html +1 -1
  19. sky/dashboard/out/workspace/new.html +1 -1
  20. sky/dashboard/out/workspaces/[name].html +1 -1
  21. sky/dashboard/out/workspaces.html +1 -1
  22. sky/jobs/constants.py +0 -2
  23. sky/jobs/scheduler.py +7 -4
  24. sky/jobs/server/core.py +6 -3
  25. sky/jobs/state.py +9 -8
  26. sky/jobs/utils.py +1 -1
  27. sky/provision/common.py +10 -0
  28. sky/resources.py +7 -6
  29. sky/serve/server/core.py +5 -0
  30. sky/skylet/constants.py +4 -0
  31. sky/utils/env_options.py +6 -0
  32. sky/utils/schemas.py +2 -2
  33. {skypilot_nightly-1.0.0.dev20250618.dist-info → skypilot_nightly-1.0.0.dev20250620.dist-info}/METADATA +1 -1
  34. {skypilot_nightly-1.0.0.dev20250618.dist-info → skypilot_nightly-1.0.0.dev20250620.dist-info}/RECORD +40 -37
  35. /sky/dashboard/out/_next/static/{LRpGymRCqq-feuFyoWz4m → BO0Fgz0CZe-AElSLWzYJk}/_buildManifest.js +0 -0
  36. /sky/dashboard/out/_next/static/{LRpGymRCqq-feuFyoWz4m → BO0Fgz0CZe-AElSLWzYJk}/_ssgManifest.js +0 -0
  37. {skypilot_nightly-1.0.0.dev20250618.dist-info → skypilot_nightly-1.0.0.dev20250620.dist-info}/WHEEL +0 -0
  38. {skypilot_nightly-1.0.0.dev20250618.dist-info → skypilot_nightly-1.0.0.dev20250620.dist-info}/entry_points.txt +0 -0
  39. {skypilot_nightly-1.0.0.dev20250618.dist-info → skypilot_nightly-1.0.0.dev20250620.dist-info}/licenses/LICENSE +0 -0
  40. {skypilot_nightly-1.0.0.dev20250618.dist-info → skypilot_nightly-1.0.0.dev20250620.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 = '903f8a7f3955084316b26af619b6b043f43de01c'
8
+ _SKYPILOT_COMMIT_SHA = '1951fb212ab64d7fbcd877457686d650f10700bb'
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.dev20250618'
38
+ __version__ = '1.0.0.dev20250620'
39
39
  __root_dir__ = os.path.dirname(os.path.abspath(__file__))
40
40
 
41
41
 
sky/cli.py CHANGED
@@ -1,9 +1,9 @@
1
1
  """The 'sky' command line tool."""
2
2
 
3
- from sky.client import cli as cli_client
3
+ from sky.client.cli import command
4
4
 
5
5
 
6
6
  # For backward compatibility.
7
7
  # setup.py uses this file to install the CLI.
8
8
  def cli():
9
- cli_client.cli()
9
+ command.cli()
File without changes