From f0fe2d8e4341e187e617e0194ec85cc9f83e37f8 Mon Sep 17 00:00:00 2001 From: grubert Date: Tue, 23 Nov 2021 18:02:19 +0000 Subject: [PATCH] regenerate wheel after tagging source clear cache git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@8902 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- docutils/docs/dev/release.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docutils/docs/dev/release.txt b/docutils/docs/dev/release.txt index e8c5364ae..ef1e99014 100644 --- a/docutils/docs/dev/release.txt +++ b/docutils/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 -- 2.11.4.GIT