Skip to content

Commit

Permalink
setuptools in build pyquibbler-labextension
Browse files Browse the repository at this point in the history
  • Loading branch information
rkishony committed May 22, 2024
1 parent 71735fe commit 73a3f27
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
python -m pip install setuptools wheel twine
- name: Build wheel
run: python -mpip wheel . -w ./dist --no-deps
run: python -m pip wheel . -w ./dist --no-deps

- uses: actions/upload-artifact@v3
with:
Expand All @@ -44,7 +44,9 @@ jobs:
node-version: 18

- name: Install dependencies
run: python -m pip install -U jupyterlab~=3.1 wheel
run: |
python -m pip install --upgrade pip setuptools
python -m pip install jupyterlab==3.1 wheel
- name: Build the extension
run: |
Expand All @@ -55,7 +57,7 @@ jobs:
jupyter labextension list 2>&1 | grep -ie "pyquibbler-labextension.*OK"
python -m jupyterlab.browser_check
python -mpip wheel . -w ./dist --no-deps
python -m pip wheel . -w ./dist --no-deps
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 73a3f27

Please sign in to comment.