SF.net SVN: docutils:[9631 ] trunk/docutils/docs/dev/r elease.txt
grubert--- via Docutils-checkins <[email protected]>
| Newsgroups | gmane.text.docutils.cvs |
|---|---|
| Message-ID | <[email protected]> |
Revision: 9631
http://sourceforge.net/p/docutils/code/9631
Author: grubert
Date: 2024-04-10 21:17:54 +0000 (Wed, 10 Apr 2024)
Log Message:
-----------
more on sdist installation ... not working from test.pypi
Modified Paths:
--------------
trunk/docutils/docs/dev/release.txt
Modified: trunk/docutils/docs/dev/release.txt
===================================================================
--- trunk/docutils/docs/dev/release.txt 2024-04-10 20:05:49 UTC (rev 9630)
+++ trunk/docutils/docs/dev/release.txt 2024-04-10 21:17:54 UTC (rev 9631)
@@ -88,20 +88,30 @@
cp -Lr ../docutils-code/docutils/test .
python test/alltests.py
+ if ok ::
+
+ deactivate ; cd .. ; rm -r du3
+
Test the sdist::
python3 -m venv du3s ; cd du3s
export PYTHONPATH= ; . bin/activate
- 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-binary docutils docutils
+ sdist installation fails with subprocess not finding flit_core .
+ test.pypi has flit 3.5.1 but installs 0.5 preinstalling flit_core did not work
+ either ... why.
+
+ postbone sdist test to pypi::
+
cp -Lr ../docutils-code/docutils/test .
python test/alltests.py
- Ignore ``test_find_file_in_dirs`` fails because HISTORY.txt is missing.
+ Ignore ``test_find_file_in_dirs`` fails because HISTORY.txt is missing or/and
+ missing pil.
- pip uninstall docutils
- deactivate ; cd .. ; rm -r du3
+ deactivate ; cd .. ; rm -r du3s
* Commit changes ... the changed version number.
@@ -124,8 +134,23 @@
find .cache/pip/wheels -name docutils\*whl -exec rm -v -i {} \;
-* and test::
+* Test the sdist::
+ python3 -m venv du3s ; cd du3s
+ export PYTHONPATH= ; . bin/activate
+
+ pip install --no-binary docutils docutils
+
+ cp -Lr ../docutils-code/docutils/test .
+ python test/alltests.py
+
+ Ignore ``test_find_file_in_dirs`` fails because HISTORY.txt is missing or/and
+ missing pil.
+
+ deactivate ; cd .. ; rm -r du3s
+
+* and wheel::
+
python3 -m venv du3 ; cd du3
export PYTHONPATH= ; . bin/activate
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.