Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: Install Python
uses: actions/setup-python@v1
with:
Expand Down Expand Up @@ -47,7 +47,6 @@ jobs:
python -m pip install jupyter_packaging
- name: Build the extension
run: |
pip install .
jlpm install
jlpm run build
cd jupyterlab_widgets
Expand All @@ -56,4 +55,6 @@ jobs:
jupyter labextension develop . --overwrite
jupyter labextension list

pip install .

python -m jupyterlab.browser_check
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
extras_require = setuptools_args['extras_require'] = {
':python_version<"3.3"' : ['ipython>=4.0.0,<6.0.0'],
':python_version>="3.3"': ['ipython>=4.0.0'],
':python_version>="3.6"': ['jupyterlab_widgets>=1.0.0'],
':python_version>="3.6"': ['jupyterlab_widgets>=1.0.0,<3'],
'test:python_version=="2.7"': ['mock'],
'test': ['pytest>=3.6.0', 'pytest-cov'],
}
Expand Down