From 57c57d10117960ca2cda07e267b056fafbe77c54 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Fri, 28 Mar 2025 20:36:59 -0400 Subject: [PATCH] Fix statement in Required environments docs (#12540) ## Summary The beginning of the sentence says that the package only publishes distributions for Linux, so it will only be installable on Linux. --- docs/concepts/resolution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/resolution.md b/docs/concepts/resolution.md index 3d1d9248f..3fad45adb 100644 --- a/docs/concepts/resolution.md +++ b/docs/concepts/resolution.md @@ -183,7 +183,7 @@ install the resulting built distribution. Some packages (like PyTorch) publish built distributions, but omit a source distribution. Such packages are _only_ installable on platforms for which a built distribution is available. For example, if a package publishes built distributions for Linux, but not macOS or Windows, then that -package will _only_ be installable on Windows. +package will _only_ be installable on Linux. Packages that lack source distributions cause problems for universal resolution, since there will typically be at least one platform or Python version for which the package is not installable.