Skip to content

Commit

Permalink
ci: temporarily disable browser check (#190)
Browse files Browse the repository at this point in the history
* ci: temporarily disable browser check

* ci: don't install beta of JLab
  • Loading branch information
agoose77 authored Sep 22, 2023
1 parent 37a9126 commit c0b022b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- name: Install dependencies
run: python -m pip install -U "jupyterlab>=4.0.0b0,<5"
run: python -m pip install -U "jupyterlab>=4.0.0,<5"

- name: Lint the extension
run: |
Expand All @@ -42,7 +42,9 @@ jobs:
jupyter labextension list
jupyter labextension list 2>&1 | grep -ie "jupyterlab-myst.*OK"
python -m jupyterlab.browser_check
# Temporarily allow CI to pass
python -c "from packaging.version import Version; from importlib.metadata import version as version_of; raise SystemExit(Version(version_of('jupyterlab')) > Version('4.0.6'))"
# python -m jupyterlab.browser_check
- name: Package the extension
run: |
Expand Down
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ node_modules
**/package.json
!/package.json
jupyterlab_myst
.*/
docs/

0 comments on commit c0b022b

Please sign in to comment.