Tweak package paths in release docs

This commit is contained in:
Daniele Varrazzo 2021-06-16 16:38:12 +01:00
parent 2b7383c9f9
commit cbbf195a23

View File

@ -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 - Remove the ``.exe`` from the dir, because we don't want to upload them on
PyPI:: PyPI::
$ rm -v psycopg2-${VERSION}/*.exe $ rm -v packages/psycopg2-${VERSION}/*.exe
- Only for stable packages: upload the signed packages on PyPI:: - 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 - Create a release and release notes in the psycopg website, announce to
psycopg and pgsql-announce mailing lists. psycopg and pgsql-announce mailing lists.
@ -74,7 +74,7 @@ Releasing test packages
Test packages may be uploaded on the `PyPI testing site`__ using:: 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``. assuming `proper configuration`__ of ``~/.pypirc``.