summaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorgrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2021-11-23 18:02:19 +0000
committergrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2021-11-23 18:02:19 +0000
commitaa9cc299adbc8e5a2a5aaeb7c0196c8dbeffd63c (patch)
tree990346b7778bbc306a5ec0c14f3be1fe554fc199 /docs/dev
parente97ed1e6f72ce3bad587438a3dd7732a2adb94de (diff)
downloaddocutils-aa9cc299adbc8e5a2a5aaeb7c0196c8dbeffd63c.tar.gz
regenerate wheel after tagging source
clear cache git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8902 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/release.txt12
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/dev/release.txt b/docs/dev/release.txt
index e8c5364ae..ef1e99014 100644
--- a/docs/dev/release.txt
+++ b/docs/dev/release.txt
@@ -80,11 +80,21 @@ Releasing (post 2020)
svn+ssh://grubert@svn.code.sf.net/p/docutils/code/tags/docutils-0.## \
-m "tagging release 0.##"
+* Update your source directory.
+* Remove distribution files and build universal wheel and source-distribution again::
+
+ python3 setup.py sdist
+ python3 setup.py bdist_wheel --universal
+
* Now upload to pypi::
python3 -m twine upload dist/docutils-0.##*
- and test::
+* Remove previous package from local cache::
+
+ find .cache/pip/wheels -name docutils\*whl -exec rm -v -i {} \;
+
+* and test::
python3 -m venv du3 ; cd du3
export PYTHONPATH= ; . bin/activate