summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCarlton Gibson <carlton.gibson@noumenal.es>2021-10-05 10:05:07 +0200
committerCarlton Gibson <carlton@noumenal.es>2021-10-05 10:48:37 +0200
commita31edf43b67143f41351ebe53d036f655c643f7a (patch)
treedaff2be2197c9f6fb62b2a215a6c541c146c0aa0 /docs
parent15987c9c5315ac30f069915e28de78ade788458d (diff)
Dropped easy_install example from Release How-To.
easy_install was deprecated in 2019. https://setuptools.pypa.io/en/latest/history.html#v42-0-0
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/howto-release-django.txt8
1 files changed, 2 insertions, 6 deletions
diff --git a/docs/internals/howto-release-django.txt b/docs/internals/howto-release-django.txt
index 078b31a472..b715cd6fed 100644
--- a/docs/internals/howto-release-django.txt
+++ b/docs/internals/howto-release-django.txt
@@ -314,16 +314,12 @@ Now you're ready to actually put the release out there. To do this:
$ scp Django-A.B.C.checksum.txt.asc djangoproject.com:/home/www/www/media/pgp/Django-A.B.C.checksum.txt
-#. Test that the release packages install correctly using ``easy_install``
- and ``pip``. Here's one method::
+#. Test that the release packages install correctly using ``pip``. Here's one
+ method::
$ RELEASE_VERSION='1.7.2'
$ MAJOR_VERSION=`echo $RELEASE_VERSION| cut -c 1-3`
- $ python -m venv django-easy-install
- $ . django-easy-install/bin/activate
- $ easy_install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION.tar.gz
- $ deactivate
$ python -m venv django-pip
$ . django-pip/bin/activate
$ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION.tar.gz