From 40f89276bc120bea2b424ac53036f693a2659fc8 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Wed, 5 Jun 2024 11:28:05 -0700 Subject: [PATCH] Change formatting to satisfy codespell check --- .../python-package-distribution-files-sdist-wheel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-structure-code/python-package-distribution-files-sdist-wheel.md b/package-structure-code/python-package-distribution-files-sdist-wheel.md index 6ea58e74..e8d6a99c 100644 --- a/package-structure-code/python-package-distribution-files-sdist-wheel.md +++ b/package-structure-code/python-package-distribution-files-sdist-wheel.md @@ -158,7 +158,7 @@ Also note that we are not discussing conda build workflows in this section. package. These are the "raw / as-is" files that you store on GitHub or whatever platform you use to manage your code. -**S**ource **Dist**ributions are referred to as sdist. As the name implies, a SDIST contains the source code; it has not been +Source Distributions (**S** + **Dist**) are referred to as sdist. As the name implies, a SDIST contains the source code; it has not been built or compiled in any way. Thus, when a user installs your source distribution using pip, pip needs to run a build step first. For this reason, you could define a source distribution as a compressed archive that contains everything required to build a wheel (except for project dependencies) without network access.