summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2021-06-16 16:38:12 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2021-06-16 16:38:12 +0100
commitcbbf195a23ce3eee03e6523e8c11046e5d1227c4 (patch)
tree3a9c95c5620f55f2e7da520142a70a2324fd5efb
parent2b7383c9f956441489b8d7ca1694b8c182ff9ff9 (diff)
downloadpsycopg2-cbbf195a23ce3eee03e6523e8c11046e5d1227c4.tar.gz
Tweak package paths in release docs
-rw-r--r--doc/release.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/release.rst b/doc/release.rst
index c61e121..a49ec7e 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``.