diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/howto-release-django.txt | 2 | ||||
| -rw-r--r-- | docs/topics/auth/passwords.txt | 4 |
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:: |
