Skip to content

Commit ed97330

Browse files
authored
Do not use pre-releases for build dependencies
Workaround for pypa/pip#10222
1 parent 4374a35 commit ed97330

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/python-tests.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ jobs:
111111
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
112112
- name: Install the Python dependencies
113113
run: |
114-
pip install --pre -e ".[test]"
114+
pip install --no-deps -e .
115+
pip install --pre --upgrade "jupyter_server[test]"
115116
- name: List installed packages
116117
run: |
117118
pip freeze

0 commit comments

Comments
 (0)