From 81a6c6275b455ff8f818d884dee506ce24053a87 Mon Sep 17 00:00:00 2001 From: sarah-kamall Date: Wed, 13 Nov 2024 00:43:14 +0200 Subject: [PATCH] (documentation) clarify that upper range does not include patch versions Signed-off-by: sarah-kamall --- docs/source/basic_concepts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/basic_concepts.rst b/docs/source/basic_concepts.rst index 01f53bfef..bc6f6ee34 100644 --- a/docs/source/basic_concepts.rst +++ b/docs/source/basic_concepts.rst @@ -121,7 +121,7 @@ of each attribute): env.PYTHONPATH.append("{root}/python") env.PATH.append("{root}/bin") -The :attr:`requires` section defines the requirements of the package. The :func:`commands` section describes +The :attr:`requires` section defines the requirements of the package, excluding *any* subsequent patch versions. The :func:`commands` section describes what happens when this package is added to an environment. Here, the ``bin`` directory in the package installation is appended to ``PATH``, and similarly the ``python`` subdirectory is appended to ``PYTHONPATH``.