diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index ecdb73ee3..06062edcb 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -268,7 +268,7 @@ jobs: python-version: 3.9 - name: Build package run: | - python -m pip install wheel jupyter-packaging jupyterlab>=3 + python -m pip install wheel jupyter-packaging 'jupyterlab>=3,<4' BUILD_JUPYTERLAB_EXTENSION=1 python setup.py sdist bdist_wheel # Don't publish a tar.gz file over 1MB (Issue #730) if (($(wc -c < dist/*.tar.gz) > 1000000)); then exit 1; fi @@ -294,7 +294,7 @@ jobs: python-version: 3.9 - name: Build package run: | - python -m pip install wheel jupyter-packaging jupyterlab>=3 + python -m pip install wheel jupyter-packaging 'jupyterlab>=3,<4' BUILD_JUPYTERLAB_EXTENSION=1 python setup.py sdist bdist_wheel - name: Publish uses: pypa/gh-action-pypi-publish@v1.1.0