summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2024-02-07 20:57:36 -0500
committerTres Seaver <tseaver@palladion.com>2024-02-07 20:57:36 -0500
commit60b4dc9e3c072dc01e5a11dedeae225f331a2980 (patch)
treec8f07349eb38b8c31cc3374fa9c89402e07d04c5
parent94d5ce60c783eed483d2fff49a6470b066430bfb (diff)
downloadpyramid-60b4dc9e3c072dc01e5a11dedeae225f331a2980.tar.gz
pyramid-60b4dc9e3c072dc01e5a11dedeae225f331a2980.tar.bz2
pyramid-60b4dc9e3c072dc01e5a11dedeae225f331a2980.zip
fix: remove stray mentions of 'setup.py'
-rw-r--r--docs/tutorials/wiki/definingviews.rst2
-rw-r--r--docs/tutorials/wiki/design.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index 41d8c13a1..b0368bddf 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -34,7 +34,7 @@ The view code in our application will depend on a package which is not a depende
The original "tutorial" application was generated by the cookiecutter.
It does not know about our custom application requirements.
-We need to add a dependency on the ``docutils`` package to our ``tutorial`` package's ``pyproject.toml`` file by assigning this dependency to the ``requires`` parameter in the ``setup()`` function.
+We need to add a dependency on the ``docutils`` package to our ``tutorial`` package's ``pyproject.toml`` file by assigning this dependency to its ``dependencies`` stanza.
Open ``pyproject.toml`` and edit it to look like the following:
diff --git a/docs/tutorials/wiki/design.rst b/docs/tutorials/wiki/design.rst
index 5c86293f6..9c03d4bdc 100644
--- a/docs/tutorials/wiki/design.rst
+++ b/docs/tutorials/wiki/design.rst
@@ -12,7 +12,7 @@ Overall
We choose to use :term:`reStructuredText` markup in the wiki text.
Conversion from reStructuredText to HTML is provided by the widely used ``docutils`` Python module.
-We will add this module in the dependency list on the project ``setup.py`` file.
+We will add this module in the dependency list on the project's ``pyproject.toml`` file.
Models