summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2019-12-03 22:22:38 +0000
committergrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2019-12-03 22:22:38 +0000
commit926c2c9d44b81a51badd0e6da8aba03fd66afa4e (patch)
tree6c55cdc9d9fbe1bf762b82f796099a83781aabf9
parent86bb3862a31ec71a04acfcc63c84a862e06cbf36 (diff)
downloaddocutils-926c2c9d44b81a51badd0e6da8aba03fd66afa4e.tar.gz
upload to test.pypi but py3 test needs a look
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@8432 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
-rw-r--r--sandbox/infrastructure/releasing-log.txt50
1 files changed, 40 insertions, 10 deletions
diff --git a/sandbox/infrastructure/releasing-log.txt b/sandbox/infrastructure/releasing-log.txt
index c630c3126..595525a1f 100644
--- a/sandbox/infrastructure/releasing-log.txt
+++ b/sandbox/infrastructure/releasing-log.txt
@@ -11,26 +11,56 @@ Notes on what happend while releasing.
Release 0.16 (2019-11-xx)
=========================
+test ::
+
+ export PYTHONWARNINGS=default
+ python2 test/alltests.py
+ python3 test/alltests.py
+
+Fix: DeprecationWarning: Please use assertEqual in test_nodes.
+
Upload 0.16beta universal wheel and source to test.pypi::
python setup.py sdist
python3 setup.py bdist_wheel --universal
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
-Fails::
+Test in virtualenv ::
- Uploading docutils-0.16b0.dev0-py2.py3-none-any.whl
- 100% ...
- NOTE: Try --verbose to see response content.
- HTTPError: 400 Client Error: Invalid value for classifiers.
- Error: 'Natural Language :: Lithuanian' is not a valid choice for this field
- for url: https://test.pypi.org/legacy/
+ virtualenv du2 ; cd du2
+ export PYTHONPATH= ; . bin/activate
-Fix: DeprecationWarning: Please use assertEqual in test_nodes.
+ python -m pip install --index-url https://test.pypi.org/simple/ --no-deps docutils
+ # Successfully installed docutils-0.15.2
+ python -m pip uninstall docutils
+ python -m pip install --index-url https://test.pypi.org/simple/ --no-deps --pre docutils
+ # Successfully installed docutils-0.16b0.dev0
-Test a beta ::
+ cp -r ~/projects/docutils-code/docutils/test .
+ python2 test/alltests.py
+ # IGNORE stylesheet path differences ?
+
+ # -<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
+ # -<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
+ # +<link rel="stylesheet" href="../../html4css1.css" type="text/css" />
+ # +<link rel="stylesheet" href="../../math.css" type="text/css" />
+
+ deactivate ; cd .. ; rm -rf du2
+
+Test in venv ::
+
+ python3 -m venv du3 ; cd du3
+ export PYTHONPATH= ; . bin/activate
+
+ python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps docutils
+ # Successfully installed docutils-0.15.2
+ python -m pip uninstall docutils
+ python -m pip install --index-url https://test.pypi.org/simple/ --no-deps --pre docutils
+ # Successfully installed docutils-0.16b0.dev0
+ cp -r ~/projects/docutils-code/docutils/test .
+ python test/alltests.py
- pip install --pre docutils
+40 failures ... some cached pip thing ?
Release 0.15 (2019-07-24)