From ca16a1a5607a42d0fa2f7d8e4fdd2071f7238af8 Mon Sep 17 00:00:00 2001 From: grubert Date: Sat, 3 Apr 2021 11:34:01 +0000 Subject: [PATCH] corrections : rm -r does not require force git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@8651 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- docutils/docs/dev/release.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docutils/docs/dev/release.txt b/docutils/docs/dev/release.txt index 2e010f719..bcaed80cc 100644 --- a/docutils/docs/dev/release.txt +++ b/docutils/docs/dev/release.txt @@ -52,14 +52,13 @@ Releasing (post 2020) export PYTHONPATH= ; . bin/activate python -m pip install --index-url https://test.pypi.org/simple/ --no-deps docutils - # Successfully installed docutils-0.## cp -r ../docutils-code/docutils/test . python2 test/alltests.py # IGNORE stylesheet path differences ? python -m pip uninstall docutils - deactivate ; cd .. ; rm -rf du2 + deactivate ; cd .. ; rm -r du2 Test in venv :: @@ -67,14 +66,13 @@ Releasing (post 2020) export PYTHONPATH= ; . bin/activate python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps docutils - # Successfully installed docutils-0.16 cp -r ../docutils-code/docutils/test . python test/alltests.py # IGNORE stylesheet path differences ? python -m pip uninstall docutils - deactivate ; cd .. ; rm -rf du3 + deactivate ; cd .. ; rm -r du3 * Now upload to pypi:: -- 2.11.4.GIT