From cbbf195a23ce3eee03e6523e8c11046e5d1227c4 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Wed, 16 Jun 2021 16:38:12 +0100 Subject: [PATCH] Tweak package paths in release docs --- doc/release.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/release.rst b/doc/release.rst index c61e1214..a49ec7ef 100644 --- a/doc/release.rst +++ b/doc/release.rst @@ -57,11 +57,11 @@ How to make a psycopg2 release - Remove the ``.exe`` from the dir, because we don't want to upload them on PyPI:: - $ rm -v psycopg2-${VERSION}/*.exe + $ rm -v packages/psycopg2-${VERSION}/*.exe - Only for stable packages: upload the signed packages on PyPI:: - $ twine upload -s psycopg2-${VERSION}/* + $ twine upload -s packages/psycopg2-${VERSION}/* - Create a release and release notes in the psycopg website, announce to psycopg and pgsql-announce mailing lists. @@ -74,7 +74,7 @@ Releasing test packages Test packages may be uploaded on the `PyPI testing site`__ using:: - $ twine upload -s -r testpypi psycopg2-${VERSION}/* + $ twine upload -s -r testpypi packages/psycopg2-${VERSION}/* assuming `proper configuration`__ of ``~/.pypirc``.