-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from jtpio/lab3
Update to JupyterLab 3 new extension system
- Loading branch information
Showing
17 changed files
with
4,870 additions
and
814 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
name: Packaging | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: '*' | ||
|
||
env: | ||
PIP_DISABLE_PIP_VERSION_CHECK: 1 | ||
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '14.x' | ||
- name: Install Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
architecture: 'x64' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip wheel | ||
python -m pip install setuptools jupyter_packaging "jupyterlab>=3,<4" | ||
- name: Build pypi distributions | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
- name: Build npm distributions | ||
run: | | ||
npm pack | ||
cp *.tgz dist | ||
- name: Build checksum file | ||
run: | | ||
cd dist | ||
sha256sum * | tee SHA256SUMS | ||
- name: Upload distributions | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: dist ${{ github.run_number }} | ||
path: ./dist | ||
|
||
install: | ||
runs-on: ${{ matrix.os }}-latest | ||
needs: [build] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu, macos, windows] | ||
python: ['3.6', '3.9'] | ||
include: | ||
- python: '3.6' | ||
dist: 'ipylab*.tar.gz' | ||
- python: '3.9' | ||
dist: 'ipylab*.whl' | ||
- os: windows | ||
py_cmd: python | ||
- os: macos | ||
py_cmd: python3 | ||
- os: ubuntu | ||
py_cmd: python | ||
steps: | ||
- name: Install Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
architecture: 'x64' | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: dist ${{ github.run_number }} | ||
path: ./dist | ||
- name: Install the prerequisites | ||
run: | | ||
${{ matrix.py_cmd }} -m pip install pip wheel | ||
- name: Install the package | ||
run: | | ||
cd dist | ||
${{ matrix.py_cmd }} -m pip install -vv ${{ matrix.dist }} | ||
- name: Validate environment | ||
run: | | ||
${{ matrix.py_cmd }} -m pip freeze | ||
${{ matrix.py_cmd }} -m pip check | ||
- name: Validate the install | ||
run: | | ||
jupyter labextension list | ||
jupyter labextension list 2>&1 | grep -ie "ipylab.*enabled.*ok" - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,6 +156,5 @@ ipylab/labextension/*.tgz | |
ipylab/labextension | ||
|
||
package-lock.json | ||
yarn.lock | ||
|
||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ node_modules | |
**/node_modules | ||
**/lib | ||
**/package.json | ||
ipylab/labextension |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.