Skip to content

Commit

Permalink
Remove pip install -e . step in the check release workflow (#116)
Browse files Browse the repository at this point in the history
* Remove `pip install -e .` step in the check release workflow

* Try --pre
  • Loading branch information
jtpio committed Mar 9, 2023
1 parent 3fc5a72 commit f7a0f6b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/check-release.yml
Expand Up @@ -25,10 +25,6 @@ jobs:
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- name: Install Dependencies
run: |
pip install -e .
- name: Check Release
if: ${{ matrix.group == 'check_release' }}
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -69,7 +69,7 @@ build_dir = "jupytercad/labextension"
version-cmd = "python scripts/bump-version.py"

[tool.jupyter-releaser.hooks]
before-build-npm = ["python -m pip install jupyterlab>=4.0.0a32", "jlpm", "jlpm build:prod"]
before-build-npm = ["python -m pip install jupyterlab --pre -U", "jlpm", "jlpm build:prod"]
before-build-python = ["jlpm clean:all"]

[tool.check-wheel-contents]
Expand Down

0 comments on commit f7a0f6b

Please sign in to comment.