From aa9cc299adbc8e5a2a5aaeb7c0196c8dbeffd63c Mon Sep 17 00:00:00 2001 From: grubert Date: Tue, 23 Nov 2021 18:02:19 +0000 Subject: 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 --- docs/dev/release.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'docs/dev') 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 -- cgit v1.2.1