PEP 639: Examples, always use ${VERSION}, not {version} (#3777)

This commit is contained in:
Miro Hrončok 2024-05-13 12:30:47 +02:00 committed by GitHub
parent df80a63221
commit d3e304e8d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ the license files would be located at the paths:
/setuptools-${VERSION}/setuptools/_vendor/packaging/LICENSE.BSD /setuptools-${VERSION}/setuptools/_vendor/packaging/LICENSE.BSD
In the built wheel, with ``/`` being the root of the archive and In the built wheel, with ``/`` being the root of the archive and
``{version}`` as the previous, the license files would be stored at: ``${VERSION}`` as the previous, the license files would be stored at:
.. code-block:: shell .. code-block:: shell
@ -185,7 +185,7 @@ In the built wheel, with ``/`` being the root of the archive and
/setuptools-${VERSION}.dist-info/licenses/setuptools/_vendor/packaging/LICENSE.BSD /setuptools-${VERSION}.dist-info/licenses/setuptools/_vendor/packaging/LICENSE.BSD
Finally, in the installed project, with ``site-packages`` being the site dir Finally, in the installed project, with ``site-packages`` being the site dir
and ``{version}`` as the previous, the license files would be installed to: and ``${VERSION}`` as the previous, the license files would be installed to:
.. code-block:: shell .. code-block:: shell