Skip to content

Commit c5fdde6

Browse files
Bug:4021 Unescape zenml[local] installation (#4022)
1 parent 67cdeed commit c5fdde6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/zenml/deployers/containerized_deployer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def requirements(self) -> Set[str]:
7575
if self.config.is_local and GlobalConfiguration().uses_sql_store:
7676
# If we're directly connected to a DB, we need to install the
7777
# `local` extra in the Docker image to include the DB dependencies.
78-
requirements.add(f"'zenml[local]=={zenml.__version__}'")
78+
requirements.add(f"zenml[local]=={zenml.__version__}")
7979

8080
return requirements
8181

src/zenml/orchestrators/containerized_orchestrator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def requirements(self) -> Set[str]:
3939
if self.config.is_local and GlobalConfiguration().uses_sql_store:
4040
# If we're directly connected to a DB, we need to install the
4141
# `local` extra in the Docker image to include the DB dependencies.
42-
requirements.add(f"'zenml[local]=={zenml.__version__}'")
42+
requirements.add(f"zenml[local]=={zenml.__version__}")
4343

4444
return requirements
4545

0 commit comments

Comments
 (0)