From da2cb26d1a22eb3d4063ed6f4a2e50ea3cafcdaf Mon Sep 17 00:00:00 2001 From: Alex Strick van Linschoten Date: Fri, 1 Mar 2024 14:39:39 +0100 Subject: [PATCH 1/2] Update copier.yml As per ruff changes. --- copier.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/copier.yml b/copier.yml index 63437c6..d669efc 100644 --- a/copier.yml +++ b/copier.yml @@ -97,7 +97,7 @@ _tasks: {% if _copier_conf.os == 'windows' %} echo "Auto-formatting not supported on Windows" {% else %} - {{ _copier_python }} -m ruff --select F401,F841 --fix \ + {{ _copier_python }} -m ruff check --select F401,F841 --fix \ --exclude "__init__.py" --isolated \ steps pipelines run.py > /dev/null 2>&1 || true {% endif %} @@ -106,7 +106,7 @@ _tasks: {% if _copier_conf.os == 'windows' %} echo "Auto-formatting not supported on Windows" {% else %} - {{ _copier_python }} -m ruff --select I \ + {{ _copier_python }} -m ruff check --select I \ --fix --ignore D \ steps pipelines run.py > /dev/null 2>&1 || true {% endif %} From 9be8de4d7df94b8c703225975fc83a4488ba1d26 Mon Sep 17 00:00:00 2001 From: Andrei Vishniakov <31008759+avishniakov@users.noreply.github.com> Date: Fri, 1 Mar 2024 16:21:44 +0100 Subject: [PATCH 2/2] point to develop --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63ac590..1a3de75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,5 +56,5 @@ jobs: with: stack-name: ${{ matrix.stack-name }} python-version: ${{ matrix.python-version }} - ref-zenml: ${{ inputs.ref-zenml || 'feature/OSSK-357-deprecate-external-artifact-with-non-value-inputs' }} + ref-zenml: ${{ inputs.ref-zenml || 'develop' }} ref-template: ${{ inputs.ref-template || github.ref }}