summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-11-07 15:53:30 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-11-08 14:14:13 +0100
commit85efc14a2edac532df1a9ad4dd9b6d4a4dcf583e (patch)
tree14bef64cc49b473ffbf94d56f079b1e495137df1 /docs
parenteee4da3b5748370a5c562bc63d2cae61ea85b16c (diff)
Fixed #30948 -- Changed packaging to use declarative config in setup.cfg.
Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/howto-release-django.txt2
-rw-r--r--docs/topics/auth/passwords.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/internals/howto-release-django.txt b/docs/internals/howto-release-django.txt
index 00264ab2fa..8ada93b0ec 100644
--- a/docs/internals/howto-release-django.txt
+++ b/docs/internals/howto-release-django.txt
@@ -206,7 +206,7 @@ OK, this is the fun part, where we actually push out a release!
on ``VERSION``.
#. If this is a pre-release package, update the "Development Status" trove
- classifier in ``setup.py`` to reflect this. Otherwise, make sure the
+ classifier in ``setup.cfg`` to reflect this. Otherwise, make sure the
classifier is set to ``Development Status :: 5 - Production/Stable``.
#. Tag the release using ``git tag``. For example::
diff --git a/docs/topics/auth/passwords.txt b/docs/topics/auth/passwords.txt
index 44e80911ba..134ef14583 100644
--- a/docs/topics/auth/passwords.txt
+++ b/docs/topics/auth/passwords.txt
@@ -89,7 +89,7 @@ To use Argon2 as your default storage algorithm, do the following:
#. Install the `argon2-cffi library`_. This can be done by running
``python -m pip install django[argon2]``, which is equivalent to
``python -m pip install argon2-cffi`` (along with any version requirement
- from Django's ``setup.py``).
+ from Django's ``setup.cfg``).
#. Modify :setting:`PASSWORD_HASHERS` to list ``Argon2PasswordHasher`` first.
That is, in your settings file, you'd put::
@@ -119,7 +119,7 @@ To use Bcrypt as your default storage algorithm, do the following:
#. Install the `bcrypt library`_. This can be done by running
``python -m pip install django[bcrypt]``, which is equivalent to
``python -m pip install bcrypt`` (along with any version requirement from
- Django's ``setup.py``).
+ Django's ``setup.cfg``).
#. Modify :setting:`PASSWORD_HASHERS` to list ``BCryptSHA256PasswordHasher``
first. That is, in your settings file, you'd put::