From c4e7ddf90a4360773b17e28f9e93a742e67b5ffd Mon Sep 17 00:00:00 2001 From: rocky Date: Fri, 12 Jun 2020 21:29:32 -0400 Subject: [PATCH] Administrivia --- admin-tools/how-to-make-a-release.md | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/admin-tools/how-to-make-a-release.md b/admin-tools/how-to-make-a-release.md index e6487756..493f22af 100644 --- a/admin-tools/how-to-make-a-release.md +++ b/admin-tools/how-to-make-a-release.md @@ -60,16 +60,38 @@ $ . ./admin-tools/make-dist-newer.sh $ twine check dist/uncompyle6-$VERSION* +# Check package on github + + $ mkdir /tmp/gittest; pushd /tmp/gittest + $ pyenv local 3.7.5 + $ pip install -e git://github.com/rocky/python-uncompyle6.git#egg=uncompyle6 + $ uncompyle6 --help + $ pip uninstall uncompyle6 + $ popd + +# Release on Github + +Goto https://github.com/rocky/python-uncompyle6/releases + +Now check the *tagged* release. (Checking the untagged release was previously done). + +Todo: turn this into a script in `admin-tools` + + $ pushd /tmp/gittest + $ pip install -e git://github.com/rocky/python-uncompyle6.git@$VERSION#egg=uncompyle6 + $ uncompyle6 --help + $ pip uninstall uncompyle6 + $ popd + + # Upload single package and look at Rst Formating $ twine check dist/uncompyle6-${VERSION}* - $ twine upload dist/uncompyle6-${VERSION}-py3.3.egg # Upload rest of versions $ twine upload dist/uncompyle6-${VERSION}* -Goto https://github.com/rocky/python-uncompyle6/releases # Push tags: