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

Remove gpg signing step from releasing doc #131

Merged
merged 2 commits into from
Jul 4, 2023
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
12 changes: 3 additions & 9 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,18 @@ rm -rf ./dist
python3 -m build
```

6) Sign files:
```
gpg --detach-sign -u ${GPG} -a dist/result-${VERSION}.tar.gz
gpg --detach-sign -u ${GPG} -a dist/result-${VERSION}-py3-none-any.whl
```

7) Upload package to PyPI:
6) Upload package to PyPI:
```
twine upload dist/result-${VERSION}*
git push
git push --tags
```

8) Optionally check the new version is published correctly
7) Optionally check the new version is published correctly
- https://github.com/rustedpy/result/tags
- https://pypi.org/project/result/#history

2) Update version number to next dev version (for example after `v0.9.0` this should be set to `0.10.0.dev0`:
8) Update version number to next dev version (for example after `v0.9.0` this should be set to `0.10.0.dev0`:
```
vim -p src/result/__init__.py
```
Expand Down