From 89d6e9148fe6c5c0bee7e83ab777141ff8228866 Mon Sep 17 00:00:00 2001 From: David Perl Date: Tue, 19 May 2026 15:54:17 +0200 Subject: [PATCH] double check bec_lib installation --- .gitea/workflows/create_update_pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/create_update_pr.yml b/.gitea/workflows/create_update_pr.yml index 00befae..9cecb9b 100644 --- a/.gitea/workflows/create_update_pr.yml +++ b/.gitea/workflows/create_update_pr.yml @@ -16,12 +16,12 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: '3.12' + python-version: "3.12" - name: Install tools run: | pip install copier PySide6 bec_lib - + python -c "import bec_lib; print(bec_lib.__file__)" - name: Checkout uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: branch="chore/update-template-$(python -m uuid)" echo "switching to branch $branch" git checkout -b $branch - + python -c "import bec_lib; print(bec_lib.__file__)" echo "Running copier update..." copier update --trust --defaults --conflict inline 2>&1 | tee copier.log status=${PIPESTATUS[0]}