-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
93f1868
commit 408c9f1
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Releasing a new version | ||
|
||
# versioning | ||
update the version in setup.py | ||
update CHANGELOG.txt | ||
> git --tag v0.0.0 | ||
> git commit -a -m 'update CHANGELOG.txt and version' | ||
> git push origin v0.0.0 | ||
|
||
# create release tag on github | ||
|
||
# upload source to pypi | ||
> python setup.py sdist | ||
> twine dist/* |