From b4fc9f8f4aff91bc3f49610c035e300f8ff3f41a Mon Sep 17 00:00:00 2001 From: "Maarten A. Breddels" Date: Wed, 1 Nov 2023 18:06:04 +0100 Subject: [PATCH] temp: install ipyvue from branch --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c549aba3..ff1a1044 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -73,7 +73,9 @@ jobs: with: name: ipyvuetify-dist-${{ github.run_number }} - name: Install ipyvuetify - run: python -m pip install "$(find dist -name *.whl)" + run: | + pip install jupyter_core jupyter-packaging "jupyterlab<4" + python -m pip install https://github.com/widgetti/ipyvue/archive/refs/heads/vue3.zip "$(find dist -name *.whl)" - name: test import run: (mkdir test-install; cd test-install; python -c "from ipyvuetify import Btn") @@ -89,7 +91,7 @@ jobs: with: name: ipyvuetify-dist-${{ github.run_number }} - name: Install ipyvuetify - run: python -m pip install "$(find dist -name *.whl)[test]" + run: python -m pip install https://github.com/widgetti/ipyvue/archive/refs/heads/vue3.zip "$(find dist -name *.whl)[test]" - name: Install chromium run: playwright install chromium - name: Run ui-tests