Skip to content

Commit efa2abf

Browse files
fix github release download
1 parent af6fac7 commit efa2abf

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,7 @@ jobs:
7575
name: ipyvuetify-dist-${{ github.run_number }}
7676
- name: Install ipyvuetify
7777
run: |
78-
pip install jupyter_core jupyter-packaging "jupyterlab<4"
79-
mkdir -p /tmp/ipyvue-wheel
80-
gh release download vue3-dev --repo widgetti/ipyvue --pattern "*.whl" --dir /tmp/ipyvue-wheel --clobber
81-
python -m pip install /tmp/ipyvue-wheel/*.whl "$(find dist -name '*.whl')"
78+
python -m pip install jupyter_core jupyter-packaging "jupyterlab<4" "$(find dist -name '*.whl')"
8279
- name: test import
8380
run: (mkdir test-install; cd test-install; python -c "from ipyvuetify import Btn")
8481

@@ -95,10 +92,7 @@ jobs:
9592
name: ipyvuetify-dist-${{ github.run_number }}
9693
- name: Install ipyvuetify
9794
run: |
98-
pip install jupyter_core jupyter-packaging "jupyterlab<4"
99-
mkdir -p /tmp/ipyvue-wheel
100-
gh release download vue3-dev --repo widgetti/ipyvue --pattern "*.whl" --dir /tmp/ipyvue-wheel --clobber
101-
python -m pip install /tmp/ipyvue-wheel/*.whl "$(find dist -name '*.whl')[test]"
95+
python -m pip install jupyter_core jupyter-packaging "jupyterlab<4" "$(find dist -name '*.whl')[test]"
10296
- name: Install chromium
10397
run: playwright install chromium
10498
- name: Run ui-tests

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "ipyvuetify"
77
version = "3.0.0.alpha3"
88
description="Jupyter widgets based on vuetify UI components"
99
requires-python = ">=3.6"
10-
dependencies = ["ipyvue>=3.0.0.alpha2"]
10+
dependencies = ["ipyvue @ https://github.com/widgetti/ipyvue/releases/download/vue3-dev/ipyvue-3.0.0a5-py2.py3-none-any.whl"]
1111
keywords=["ipython", "jupyter", "widgets"]
1212
authors = [
1313
{name = "Mario Buikhuizen", email = "mbuikhuizen@gmail.com"},

0 commit comments

Comments
 (0)