From 83e26793ecce4c44d77b5ab49dbf78c9cfbf870a Mon Sep 17 00:00:00 2001 From: Baris Can Durak Date: Wed, 6 Nov 2024 17:18:27 +0100 Subject: [PATCH] updating the template version with zenml login --- .github/workflows/update-templates-to-examples.yml | 8 ++++---- src/zenml/cli/base.py | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/update-templates-to-examples.yml b/.github/workflows/update-templates-to-examples.yml index 9b55d1c9928..2984cc209fe 100644 --- a/.github/workflows/update-templates-to-examples.yml +++ b/.github/workflows/update-templates-to-examples.yml @@ -46,7 +46,7 @@ jobs: python-version: ${{ inputs.python-version }} stack-name: local ref-zenml: ${{ github.ref }} - ref-template: 2024.10.10 # Make sure it is aligned with ZENML_PROJECT_TEMPLATES from src/zenml/cli/base.py + ref-template: 2024.10.30 # Make sure it is aligned with ZENML_PROJECT_TEMPLATES from src/zenml/cli/base.py - name: Clean-up run: | rm -rf ./local_checkout @@ -118,7 +118,7 @@ jobs: python-version: ${{ inputs.python-version }} stack-name: local ref-zenml: ${{ github.ref }} - ref-template: 2024.09.23 # Make sure it is aligned with ZENML_PROJECT_TEMPLATES from src/zenml/cli/base.py + ref-template: 2024.10.30 # Make sure it is aligned with ZENML_PROJECT_TEMPLATES from src/zenml/cli/base.py - name: Clean-up run: | rm -rf ./local_checkout @@ -189,7 +189,7 @@ jobs: python-version: ${{ inputs.python-version }} stack-name: local ref-zenml: ${{ github.ref }} - ref-template: 2024.09.24 # Make sure it is aligned with ZENML_PROJECT_TEMPLATES from src/zenml/cli/base.py + ref-template: 2024.10.30 # Make sure it is aligned with ZENML_PROJECT_TEMPLATES from src/zenml/cli/base.py - name: Clean-up run: | rm -rf ./local_checkout @@ -261,7 +261,7 @@ jobs: with: python-version: ${{ inputs.python-version }} ref-zenml: ${{ github.ref }} - ref-template: 2024.09.24 # Make sure it is aligned with ZENML_PROJECT_TEMPLATES from src/zenml/cli/base.py + ref-template: 2024.10.30 # Make sure it is aligned with ZENML_PROJECT_TEMPLATES from src/zenml/cli/base.py - name: Clean-up run: | rm -rf ./local_checkout diff --git a/src/zenml/cli/base.py b/src/zenml/cli/base.py index 319e2720389..bc9bed65897 100644 --- a/src/zenml/cli/base.py +++ b/src/zenml/cli/base.py @@ -79,19 +79,19 @@ def copier_github_url(self) -> str: ZENML_PROJECT_TEMPLATES = dict( e2e_batch=ZenMLProjectTemplateLocation( github_url="zenml-io/template-e2e-batch", - github_tag="2024.10.10", # Make sure it is aligned with .github/workflows/update-templates-to-examples.yml + github_tag="2024.10.30", # Make sure it is aligned with .github/workflows/update-templates-to-examples.yml ), starter=ZenMLProjectTemplateLocation( github_url="zenml-io/template-starter", - github_tag="2024.09.24", # Make sure it is aligned with .github/workflows/update-templates-to-examples.yml + github_tag="2024.10.30", # Make sure it is aligned with .github/workflows/update-templates-to-examples.yml ), nlp=ZenMLProjectTemplateLocation( github_url="zenml-io/template-nlp", - github_tag="2024.09.23", # Make sure it is aligned with .github/workflows/update-templates-to-examples.yml + github_tag="2024.10.30", # Make sure it is aligned with .github/workflows/update-templates-to-examples.yml ), llm_finetuning=ZenMLProjectTemplateLocation( github_url="zenml-io/template-llm-finetuning", - github_tag="2024.09.24", # Make sure it is aligned with .github/workflows/update-templates-to-examples.yml + github_tag="2024.10.30", # Make sure it is aligned with .github/workflows/update-templates-to-examples.yml ), )