Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Manual Release Instructions #6152

Merged
merged 2 commits into from
Aug 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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