Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: cleanup deadcode #3196

Merged
merged 1 commit into from Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/bentoml/_internal/bento/build_dev_bentoml_whl.py
Expand Up @@ -28,9 +28,15 @@ def build_bentoml_editable_wheel(target_path: str) -> None:
return

try:
# NOTE: build.env is a standalone library,
# different from build. However, isort sometimes
# incorrectly re-order the imports order.
# isort: off
from build.env import IsolatedEnvBuilder

from build import ProjectBuilder

# isort: on
except ModuleNotFoundError as e:
raise MissingDependencyException(
f"Environment variable '{BENTOML_DEV_BUILD}=True', which requires the 'pypa/build' package ({e}). Install development dependencies with 'pip install -r requirements/dev-requirements.txt' and try again."
Expand Down
277 changes: 0 additions & 277 deletions src/bentoml/_internal/bento/local_py_modules.py

This file was deleted.