Skip to content

Commit

Permalink
Merge pull request #96 from yt-project/release_prep
Browse files Browse the repository at this point in the history
Prepare for 0.5.0 release
  • Loading branch information
matthewturk committed Apr 12, 2023
2 parents 390ccaf + 23ba0ee commit c69ab3e
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 123 deletions.
76 changes: 25 additions & 51 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,60 +1,34 @@
name: Build

on:
push:
branches: main
pull_request:
branches: "*"
on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
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.8"
architecture: "x64"

- name: Setup pip cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: pip-3.8-${{ hashFiles('package.json') }}
restore-keys: |
pip-3.8-
pip-
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Setup yarn cache
uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-
- name: Install dependencies
run: python -m pip install -U jupyterlab~=3.1 jupyter_packaging~=0.10.2 check-manifest
- name: Build the extension
run: |
jlpm
jlpm run eslint:check
python -m pip install .
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: python -m pip install -U jupyterlab~=3.0 jupyter_packaging~=0.7.9
- name: Build the extension
run: |
jlpm
jlpm run eslint:check
python -m pip install yt
python -m pip install .
echo "Checking serverextension list"
jupyter server extension list 2>&1 | grep -ie "widgyts.*OK"
echo "Checking labextension list"
jupyter labextension list 2>&1 | grep -ie "@yt-project/yt-widgets.*OK"
jupyter server extension list 2>&1 | grep -ie "widgyts.*OK"
echo "Checking browser check"
python -m jupyterlab.browser_check
jupyter labextension list 2>&1 | grep -ie "@yt-project/yt-widgets.*OK"
python -m jupyterlab.browser_check
30 changes: 0 additions & 30 deletions .github/workflows/create-release.yml

This file was deleted.

23 changes: 16 additions & 7 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Python distributions to PyPI
name: Publish Python distributions to PyPI and npm

on:
push:
Expand All @@ -8,13 +8,13 @@ on:
jobs:
build-and-publish:
name: Build and Publish
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.8
uses: actions/setup-python@v1
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: "3.10"
- name: Install pypa/build
run: >-
python -m
Expand All @@ -34,6 +34,15 @@ jobs:
# password: ${{ secrets.TEST_PYPI_API_TOKEN }}
# repository_url: https://test.pypi.org/legacy/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Publish to NPM
uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npm.org/'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
31 changes: 0 additions & 31 deletions .github/workflows/python_coverage_testing.yml

This file was deleted.

5 changes: 3 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
- To release a new version of widgyts on PyPI:

Update _version.py (set release version, remove 'dev')
git add the _version.py file and git commit
Update package.json and setup.cfg to update version and remove `dev`
`git add package.json setup.cfg`
`git commit -m "Bumping version"`
`python setup.py sdist upload`
`python setup.py bdist_wheel upload`
`git tag -a X.X.X -m 'comment'`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yt-project/yt-widgets",
"version": "0.4.0",
"version": "0.5.0",
"description": "A Custom Jupyter Widget Library for Interactive Visualization with yt",
"author": {
"name": "The yt Project",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = widgyts
version = 0.4.0
version = 0.5.0
description = A Custom Jupyter Widget Library for Interactive Visualization with yt
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit c69ab3e

Please sign in to comment.