SF.net SVN: docutils:[9630 ] trunk/docutils/docs/dev/r elease.txt
grubert--- via Docutils-checkins <[email protected]>
| Newsgroups | gmane.text.docutils.cvs |
|---|---|
| Message-ID | <[email protected]> |
Revision: 9630
http://sourceforge.net/p/docutils/code/9630
Author: grubert
Date: 2024-04-10 20:05:49 +0000 (Wed, 10 Apr 2024)
Log Message:
-----------
remove unrequired "python -m " for calling pip in venv
Modified Paths:
--------------
trunk/docutils/docs/dev/release.txt
Modified: trunk/docutils/docs/dev/release.txt
===================================================================
--- trunk/docutils/docs/dev/release.txt 2024-04-10 19:36:17 UTC (rev 9629)
+++ trunk/docutils/docs/dev/release.txt 2024-04-10 20:05:49 UTC (rev 9630)
@@ -83,7 +83,7 @@
python3 -m venv du3 ; cd du3
export PYTHONPATH= ; . bin/activate
- python -m pip install --index-url https://test.pypi.org/simple/ --no-deps docutils
+ pip install --index-url https://test.pypi.org/simple/ --no-deps docutils
cp -Lr ../docutils-code/docutils/test .
python test/alltests.py
@@ -93,7 +93,7 @@
python3 -m venv du3s ; cd du3s
export PYTHONPATH= ; . bin/activate
- python -m pip install --index-url https://test.pypi.org/simple/ --no-deps --no-binary all docutils
+ pip install --index-url https://test.pypi.org/simple/ --no-deps --no-binary all docutils
cp -Lr ../docutils-code/docutils/test .
python test/alltests.py
@@ -100,7 +100,7 @@
Ignore ``test_find_file_in_dirs`` fails because HISTORY.txt is missing.
- python -m pip uninstall docutils
+ pip uninstall docutils
deactivate ; cd .. ; rm -r du3
* Commit changes ... the changed version number.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.