File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ this. For a small app like polls, this process isn't too difficult.
193
193
:caption: ``django-polls/pyproject.toml``
194
194
195
195
[build-system]
196
- requires = ["setuptools>=61.0 "]
196
+ requires = ["setuptools>=69.3 "]
197
197
build-backend = "setuptools.build_meta"
198
198
199
199
[project]
@@ -252,7 +252,7 @@ this. For a small app like polls, this process isn't too difficult.
252
252
#. Check that the :pypi:`build` package is installed (``python -m pip install
253
253
build``) and try building your package by running ``python -m build`` inside
254
254
``django-polls``. This creates a directory called ``dist`` and builds your
255
- new package into source and binary formats, ``django-polls -0.1.tar.gz`` and
255
+ new package into source and binary formats, ``django_polls -0.1.tar.gz`` and
256
256
``django_polls-0.1-py3-none-any.whl``.
257
257
258
258
For more information on packaging, see Python's `Tutorial on Packaging and
@@ -282,7 +282,7 @@ working. We'll now fix this by installing our new ``django-polls`` package.
282
282
283
283
.. code-block:: shell
284
284
285
- python -m pip install --user django-polls/dist/django-polls -0.1.tar.gz
285
+ python -m pip install --user django-polls/dist/django_polls -0.1.tar.gz
286
286
287
287
#. With luck, your Django project should now work correctly again. Run the
288
288
server again to confirm this.
You can’t perform that action at this time.
0 commit comments