1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[5.2.x] Fixed #36402, Refs #35980 -- Updated built package name in reusable apps tutorial for PEP 625.

Backport of 1307b8a1cb from main.
This commit is contained in:
Jason Judkins
2025-05-26 11:33:29 -04:00
committed by Natalia
parent 7e4b371eb0
commit 81320d0a61

View File

@@ -209,7 +209,7 @@ this. For a small app like polls, this process isn't too difficult.
:caption: ``django-polls/pyproject.toml``
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=69.3"]
build-backend = "setuptools.build_meta"
[project]
@@ -287,7 +287,7 @@ this. For a small app like polls, this process isn't too difficult.
#. Check that the :pypi:`build` package is installed (``python -m pip install
build``) and try building your package by running ``python -m build`` inside
``django-polls``. This creates a directory called ``dist`` and builds your
new package into source and binary formats, ``django-polls-0.1.tar.gz`` and
new package into source and binary formats, ``django_polls-0.1.tar.gz`` and
``django_polls-0.1-py3-none-any.whl``.
For more information on packaging, see Python's `Tutorial on Packaging and
@@ -317,7 +317,7 @@ working. We'll now fix this by installing our new ``django-polls`` package.
.. code-block:: shell
python -m pip install --user django-polls/dist/django-polls-0.1.tar.gz
python -m pip install --user django-polls/dist/django_polls-0.1.tar.gz
#. Update ``mysite/settings.py`` to point to the new module name::