Skip to content

Commit ca1a74c

Browse files
committed
Reference glossary terms
1 parent be8b0d8 commit ca1a74c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/discussions/single-source-version.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Single-sourcing the Project Version
77
:Page Status: Complete
88
:Last Reviewed: 2024-10-02
99

10-
Many Python :ref:`distribution packages <Distribution Package>` publish a single
11-
Python :ref:`import package <Import Package>` where it is desired that the runtime
10+
Many Python :term:`distribution packages <Distribution Package>` publish a single
11+
Python :term:`import package <Import Package>` where it is desired that the runtime
1212
``__version__`` attribute on the import package report the same version specifier
1313
as :func:`importlib.metadata.version` reports for the distribution package
1414
(as described in :ref:`runtime-version-access`).

source/discussions/versioning.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,15 @@ since the latest release, setuptools-scm generates a version like
176176
Accessing version information at runtime
177177
========================================
178178

179-
Version information for all :ref:`distribution packages <Distribution Package>`
179+
Version information for all :term:`distribution packages <Distribution Package>`
180180
that are locally available in the current environment can be obtained at runtime
181181
using the standard library's :func:`importlib.metadata.version` function::
182182

183183
>>> importlib.metadata.version("pip")
184184
'23.3.2'
185185

186186
Many libraries also choose to version their top level
187-
:ref:`import packages <Import Package>` by providing a package level
187+
:term:`import packages <Import Package>` by providing a package level
188188
``__version__`` attribute::
189189

190190
>>> import pip

0 commit comments

Comments
 (0)