Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 962 Bytes

Release.md

File metadata and controls

65 lines (44 loc) · 962 Bytes

Release documentation

Release process

1 Clean environment

```bash
make clean    # delete all temp files
make prepare  # commit deletions
```

2 Python package

  1. Bump version of ssh_ipykernel

    • A new release candidate with rc0

      make bump part=major|minor|patch
    • A new build

      make bump part=build
    • A new release

      make bump part=release
    • A new release without release candidate

      make bump part=major|minor|patch version=major.minor.patch
  2. Create distribution

    make dist
  3. Create and tag release

    make release
  4. Deploy to pypi

    make upload

3 Labextension

  1. Change into folder ssh_ipykernel_interrupt and the follow 2

4 Push repo and tag

```bash
git push
git push origin --tags
```