summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2017-09-30 10:51:42 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2017-09-30 10:51:42 +0200
commit5e0d1382fa13ac435481a0ba8381e75a29364dad (patch)
tree55af8bcb7c62b6dc94c377d134b06ea58359e2f7
parent35c56c57c964f0caa1dc60daa638615b04dca499 (diff)
downloadpylint-git-5e0d1382fa13ac435481a0ba8381e75a29364dad.tar.gz
Improve the release docs with cleaning of pyc files and using twine instead of setup.py upload
-rw-r--r--doc/release.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/release.txt b/doc/release.txt
index af99b76ea..2be61bbc1 100644
--- a/doc/release.txt
+++ b/doc/release.txt
@@ -57,9 +57,10 @@ Pre-release
https://github.com/PyCQA/pylint
-Release by running:
+Release by running the following:
+
+ $ git clean -fd && find . -name '*.pyc' -delete
+ $ python setup.py sdist --formats=gztar bdist_wheel
+ $ twine upload dist/*
- $ python setup.py register sdist --formats=gztar bdist_wheel upload
-
- to release a new version to PyPI.