Skip to content

Commit

Permalink
document release process
Browse files Browse the repository at this point in the history
  • Loading branch information
SomberNight committed Dec 10, 2020
1 parent 9149382 commit f9fec22
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ docs/_build
/build
/dist
/electrumx.egg-info
/e_x.egg-info
.vscode/
.mypy_cache/
.idea/
19 changes: 19 additions & 0 deletions docs/release_process.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// 1. Add changelog

// 2. Update version number, in:
// - docs/conf.py
// - electrumx/__init__.py
// - setup.py

// 3. Tag
$ git tag -s VERSION -m "VERSION"

// 4. Build dists
$ python3 setup.py sdist bdist_wheel

// 5. Upload to PyPI
// python3 -m twine upload --repository testpypi dist/*
$ python3 -m twine upload dist/*

// You will be prompted for a username and password. For the username, use __token__.
// For the password, use API token from https://pypi.org/manage/account/ , including the pypi- prefix.

0 comments on commit f9fec22

Please sign in to comment.