summaryrefslogtreecommitdiff
path: root/docs/userguide
diff options
context:
space:
mode:
authoralvy <alvyjudy@gmail.com>2020-07-29 21:51:21 -0400
committeralvy <alvyjudy@gmail.com>2020-07-29 21:51:21 -0400
commitbd3d57dfe66bade541faf5573c14669f311a6e5c (patch)
treed0458618ec9879725547b869d981581ca7458c02 /docs/userguide
parent3268c199118dd5400e40b1afc401ea75a37dabb1 (diff)
downloadpython-setuptools-git-bd3d57dfe66bade541faf5573c14669f311a6e5c.tar.gz
docs: give python requirement a dedicated section
Diffstat (limited to 'docs/userguide')
-rw-r--r--docs/userguide/dependency_management.txt17
1 files changed, 9 insertions, 8 deletions
diff --git a/docs/userguide/dependency_management.txt b/docs/userguide/dependency_management.txt
index 8bca4fd7..97d3b662 100644
--- a/docs/userguide/dependency_management.txt
+++ b/docs/userguide/dependency_management.txt
@@ -40,14 +40,6 @@ other two types of dependency keyword, this one is specified in your
deprecated practice (WIP)`
-Python requirement
-------------------
-In some cases, you might need to specify the minimum required python version.
-This is handled with the ``python_requires`` keyword supplied to ``setup.cfg``
-or ``setup.py``.
-
-Example WIP
-
Declaring required dependency
=============================
@@ -313,3 +305,12 @@ not need to change, but the right packages will still be installed if needed.
support a feature, it should keep an empty requirements list for that feature
in its ``extras_require`` argument, so that packages depending on that feature
don't break (due to an invalid feature name).
+
+
+Python requirement
+==================
+In some cases, you might need to specify the minimum required python version.
+This is handled with the ``python_requires`` keyword supplied to ``setup.cfg``
+or ``setup.py``.
+
+Example WIP \ No newline at end of file