From 0b26c30651cb3d155a90586f2b1b994975a01d64 Mon Sep 17 00:00:00 2001 From: grubert Date: Sat, 17 Apr 2021 14:03:16 +0000 Subject: [PATCH] release 0.17.1 to testpypi git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@8707 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- sandbox/infrastructure/crosstest/t.sh | 13 +++++++++++-- sandbox/infrastructure/releasing-log.txt | 21 ++++++++++++++++++++- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/sandbox/infrastructure/crosstest/t.sh b/sandbox/infrastructure/crosstest/t.sh index a5f26aabf..9f9078fc6 100755 --- a/sandbox/infrastructure/crosstest/t.sh +++ b/sandbox/infrastructure/crosstest/t.sh @@ -1,7 +1,9 @@ #!/bin/sh -# test +# test local wheel WHL=../docutils-0.17.1b2.dev0-py2.py3-none-any.whl +WHL=TESTPYPI +# PRE = for VDIR in ./py3.* ; do echo "$VDIR" @@ -11,7 +13,14 @@ for VDIR in ./py3.* ; do export PYTHONPATH= ; . bin/activate export PYTHONWARNINGS=default export LC_ALL=C - python -m pip install $WHL + if [ -e $WHL ] ; then + python -m pip install $WHL + elif [ $WHL = "TESTPYPI" ] ; then + python -m pip install --no-cache-dir --index-url https://test.pypi.org/simple/ --no-deps docutils + python -m pip install --upgrade --index-url https://test.pypi.org/simple/ --no-deps docutils + else + python -m pip install $WHL + fi cp -Lr ~/projects/docutils-code/docutils/test . python test/alltests.py read X diff --git a/sandbox/infrastructure/releasing-log.txt b/sandbox/infrastructure/releasing-log.txt index 51bec3bf3..623a7c06a 100644 --- a/sandbox/infrastructure/releasing-log.txt +++ b/sandbox/infrastructure/releasing-log.txt @@ -31,6 +31,22 @@ Release 0.17 aftermath pinning to docutils 0.16 helped ... why ? +Release 0.17.1 (2021-04-16) +=========================== + +* tox with 2.7 3.5, 3.6, 3.7, 3.8, 3.9, 3.10 +* set_version 0.17.1 +* tox again +* commit : release 0.17.1 +* Generate universal wheel and source-distribution with py38. +* Upload universal wheel and source to test.pypi. +* test in venvs ... and then next problem pypi caches 0.17.1b2. + + --no-cache-dir does not help. + + call twice, secodn time with ``--upgrade``. + + Release 0.17.1 (2021-04-12 ...) =============================== @@ -43,7 +59,10 @@ Release 0.17.1 (2021-04-12 ...) testing against development source passes. - too late to release maybe tomorrow. + Test crosstest, see subdirectory + + 3.7 and 3.10 require libffi-dev to build local + then tox passes for 3.5 to 3.10. Release 0.17.1b1 (2021-04-09) ============================= -- 2.11.4.GIT