Skip to content

Commit

Permalink
Merge pull request #58 from jtpio/skip-if-exists
Browse files Browse the repository at this point in the history
Use jupyter-packaging skip_if_exists
  • Loading branch information
jtpio authored Feb 4, 2021
2 parents 25a7afd + a37165c commit 443f6bb
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 3 deletions.
96 changes: 96 additions & 0 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
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: |
jlpm lerna exec -- npm pack
cp packages/*/*.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: 'jupyterlab-topbar*.tar.gz'
- python: '3.9'
dist: 'jupyterlab_topbar*.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 "jupyterlab-topbar.*enabled.*ok" -
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from jupyter_packaging import (
create_cmdclass, install_npm, ensure_targets,
combine_commands, get_version,
combine_commands, get_version, skip_if_exists
)
import setuptools

Expand All @@ -21,7 +21,6 @@

# Representative files that should exist after a successful build
jstargets = [
os.path.join(HERE, "packages", "jupyterlab-topbar-extension", "lib", "index.js"),
os.path.join(lab_path, "package.json"),
]

Expand All @@ -43,11 +42,18 @@
data_files_spec=data_files_spec
)

cmdclass["jsdeps"] = combine_commands(
js_command = combine_commands(
install_npm(HERE, build_cmd="build:prod", npm=["jlpm"]),
ensure_targets(jstargets),
)

is_repo = os.path.exists(os.path.join(HERE, ".git"))
if is_repo:
cmdclass["jsdeps"] = js_command
else:
cmdclass["jsdeps"] = skip_if_exists(jstargets, js_command)


with open("README.md", "r") as fh:
long_description = fh.read()

Expand Down

0 comments on commit 443f6bb

Please sign in to comment.