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

Remove hub references #2905

Merged
merged 5 commits into from
Aug 7, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ You can combine these methods but do make sure that your list of requirements do
Depending on the options specified in your Docker settings, ZenML installs the requirements in the following order (each step optional):

* The packages installed in your local python environment
* The packages specified via the `required_hub_plugins` attribute
* The packages required by the stack unless this is disabled by setting `install_stack_requirements=False`.
* The packages specified via the `required_integrations`
* The packages specified via the `requirements` attribute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ settings:
python_package_installer: PythonPackageInstaller
replicate_local_python_environment: Union[List[str], PythonEnvironmentExportMethod,
NoneType]
required_hub_plugins: List[str]
required_integrations: List[str]
requirements: Union[NoneType, str, List[str]]
skip_build: bool
Expand Down Expand Up @@ -131,7 +130,6 @@ steps:
python_package_installer: PythonPackageInstaller
replicate_local_python_environment: Union[List[str], PythonEnvironmentExportMethod,
NoneType]
required_hub_plugins: List[str]
required_integrations: List[str]
requirements: Union[NoneType, str, List[str]]
skip_build: bool
Expand Down Expand Up @@ -190,7 +188,6 @@ steps:
python_package_installer: PythonPackageInstaller
replicate_local_python_environment: Union[List[str], PythonEnvironmentExportMethod,
NoneType]
required_hub_plugins: List[str]
required_integrations: List[str]
requirements: Union[NoneType, str, List[str]]
skip_build: bool
Expand Down
4 changes: 0 additions & 4 deletions src/zenml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@

init_logging()

# The following code is needed for `zenml.hub` subpackages to be found
from pkgutil import extend_path

__path__ = extend_path(__path__, __name__)

# Need to import zenml.models before zenml.config to avoid circular imports
from zenml.models import * # noqa: F401
Expand Down
14 changes: 0 additions & 14 deletions src/zenml/_hub/__init__.py

This file was deleted.

289 changes: 0 additions & 289 deletions src/zenml/_hub/client.py

This file was deleted.

21 changes: 0 additions & 21 deletions src/zenml/_hub/constants.py

This file was deleted.

Loading
Loading