Skip to content

Commit 55c9bef

Browse files
authored
Merge pull request #3555 from jasongrout/pindeps
Pin the upper version of jupyterlab_widgets
2 parents 1f9917d + a6532cd commit 55c9bef

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install node
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: '12.x'
18+
node-version: '14.x'
1919
- name: Install Python
2020
uses: actions/setup-python@v1
2121
with:
@@ -47,7 +47,6 @@ jobs:
4747
python -m pip install jupyter_packaging
4848
- name: Build the extension
4949
run: |
50-
pip install .
5150
jlpm install
5251
jlpm run build
5352
cd jupyterlab_widgets
@@ -56,4 +55,6 @@ jobs:
5655
jupyter labextension develop . --overwrite
5756
jupyter labextension list
5857
58+
pip install .
59+
5960
python -m jupyterlab.browser_check

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
extras_require = setuptools_args['extras_require'] = {
127127
':python_version<"3.3"' : ['ipython>=4.0.0,<6.0.0'],
128128
':python_version>="3.3"': ['ipython>=4.0.0'],
129-
':python_version>="3.6"': ['jupyterlab_widgets>=1.0.0'],
129+
':python_version>="3.6"': ['jupyterlab_widgets>=1.0.0,<3'],
130130
'test:python_version=="2.7"': ['mock'],
131131
'test': ['pytest>=3.6.0', 'pytest-cov'],
132132
}

0 commit comments

Comments
 (0)