Skip to content

Commit

Permalink
Update Manual Release Instructions (#6152)
Browse files Browse the repository at this point in the history
* Update RELEASE.md

Use `jupyter_releaser` for its build dependencies (`build`, `twine`, `tbump`)

* Update RELEASE.md
  • Loading branch information
Steven Silvester authored Aug 25, 2021
1 parent b2c0789 commit b75ee54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ pip install -ve .
### Install release dependencies

```bash
conda install -c conda-forge nodejs babel twine build
conda install -c conda-forge nodejs babel
npm install -g po2json
pip install jupyter_releaser # used for build dependencies (build, twine, tbump)
```

### Update the version

```bash
vim notebook/_version.py # update version
vim pyproject.toml # update version to match
tbump --only-patch <new_version> # set the new version
python setup.py jsversion
git commit -am "Release $(python setup.py --version)"
git tag $(python setup.py --version)
Expand All @@ -68,7 +68,7 @@ twine check dist/* && twine upload dist/*
### Change back to dev version

```bash
vim notebook/_version.py # Add the .dev suffix
tbump --only-patch <dev_version> # Add the .dev suffix
python setup.py jsversion
git commit -am "Back to dev version"
```
Expand Down

0 comments on commit b75ee54

Please sign in to comment.