This is an automated email from the ASF dual-hosted git repository.

bossenti pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new 0a8da2e96 ci: add missing poetry statement & correct action parameter 
(#1853)
0a8da2e96 is described below

commit 0a8da2e96104f34e8b8f76a7e1dbd929e68a433a
Author: Tim <[email protected]>
AuthorDate: Sun Aug 27 18:47:46 2023 +0200

    ci: add missing poetry statement & correct action parameter (#1853)
---
 .github/workflows/pr-validation.yml | 8 ++++----
 .github/workflows/python-docs.yml   | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/pr-validation.yml 
b/.github/workflows/pr-validation.yml
index 39344b359..c44a0daf8 100644
--- a/.github/workflows/pr-validation.yml
+++ b/.github/workflows/pr-validation.yml
@@ -123,8 +123,8 @@ jobs:
         uses: snok/install-poetry@v1
         with:
           version: 1.5.1
-          in-project: true
-          prefer-active-python: true
+          virtualenvs-create: true
+          virtualenvs-in-project: true
 
       - name: Install Python dependencies
         working-directory: ./streampipes-client-python
@@ -187,8 +187,8 @@ jobs:
         uses: snok/install-poetry@v1
         with:
           version: 1.5.1
-          in-project: true
-          prefer-active-python: true
+          virtualenvs-create: true
+          virtualenvs-in-project: true
 
       - name: Install Python dependencies
         working-directory: ./streampipes-client-python
diff --git a/.github/workflows/python-docs.yml 
b/.github/workflows/python-docs.yml
index b570024bc..529b21d38 100644
--- a/.github/workflows/python-docs.yml
+++ b/.github/workflows/python-docs.yml
@@ -41,9 +41,9 @@ jobs:
       - name: Install and configure Poetry
         uses: snok/install-poetry@v1
         with:
-          version: 1.5.1
-          in-project: true
-          prefer-active-python: true
+          version: 1.6.1
+          virtualenvs-create: true
+          virtualenvs-in-project: true
 
       - name: Cache Python dependencies
         uses: actions/cache@v3
@@ -60,7 +60,7 @@ jobs:
       - name: Build Python docs
         working-directory: ./streampipes-client-python
         run: |
-          mike deploy dev -u --deploy-prefix 
./streampipes-client-python/docs-tmp -b build-python-docs-${{ github.run_id }}
+          poetry run mike deploy dev -u --deploy-prefix 
./streampipes-client-python/docs-tmp -b build-python-docs-${{ github.run_id }}
           git reset --hard  # undo local changes that delete generated doc 
files
 
       - name: Publish Python docs as artifact

Reply via email to