Skip to content

Commit

Permalink
Remove default_manifest func
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-quintero committed Nov 24, 2024
1 parent 2081a1d commit 345277c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
1 change: 0 additions & 1 deletion nextmv/cloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@
from .manifest import ManifestPythonModel as ManifestPythonModel
from .manifest import ManifestRuntime as ManifestRuntime
from .manifest import ManifestType as ManifestType
from .manifest import default_python_manifest as default_python_manifest
from .status import Status as Status
from .status import StatusV2 as StatusV2
21 changes: 0 additions & 21 deletions nextmv/cloud/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,24 +222,3 @@ def from_model_configuration(cls, model_configuration: ModelConfiguration) -> "M
type=ManifestType.PYTHON,
python=manifest_python,
)


def default_python_manifest() -> Manifest:
"""
Create a default Python manifest.
Returns
-------
Manifest
The default Python manifest.
"""

manifest_python = ManifestPython.from_dict({"pip-requirements": _REQUIREMENTS_FILE})

return Manifest(
files=["main.py"],
runtime=ManifestRuntime.PYTHON,
type=ManifestType.PYTHON,
python=manifest_python,
)

0 comments on commit 345277c

Please sign in to comment.