From 30887ad2ba56ec7c52bb52470adea8ef4b5f076a Mon Sep 17 00:00:00 2001 From: Denis Rouzaud Date: Wed, 17 Apr 2024 15:44:15 +0200 Subject: [PATCH] use wheels2 --- .github/workflows/plugin-package.yml | 7 ++++++- .gitignore | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/plugin-package.yml b/.github/workflows/plugin-package.yml index 7a643d3..e28b876 100644 --- a/.github/workflows/plugin-package.yml +++ b/.github/workflows/plugin-package.yml @@ -42,7 +42,12 @@ jobs: run: qgis-plugin-ci push-translation ${{ secrets.TX_TOKEN }} - name: Install pgservice parser - run: pip install -r requirements.txt -t pg_service_parser/libs + run: | + pip download -r requirements.txt --only-binary :all: -d temp/ + unzip -o "temp/*.whl" -d pg_service_parser/libs + rm -r temp + # set write rights to group (because qgis-plugin-ci needs it) + chmod -R g+w pg_service_parser/libs - name: Package if: ${{ ! startsWith(github.ref, 'refs/tags/') }} diff --git a/.gitignore b/.gitignore index 0fa2eb7..2db75ba 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ pg_service_parser/libs .idea +__pycache__