From a83c293814d7998227399ca87de7f655519ba0d1 Mon Sep 17 00:00:00 2001 From: sarah-kamall Date: Wed, 13 Nov 2024 00:38:17 +0200 Subject: [PATCH] (documentaion): resolve weak requirement range conflict (#1824) Adjusted weak statement to specify that upper limit also includes 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``.