From 0df75a2e05d628e143bd0a15e5077e2373dd9213 Mon Sep 17 00:00:00 2001 From: Leah Wasser Date: Mon, 12 Jan 2026 20:05:12 -0700 Subject: [PATCH] bug: syntax error causing broken link --- package-structure-code/python-package-structure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-structure-code/python-package-structure.md b/package-structure-code/python-package-structure.md index f2fa2eda..bfdd4d66 100644 --- a/package-structure-code/python-package-structure.md +++ b/package-structure-code/python-package-structure.md @@ -77,7 +77,7 @@ include: -```{button-link} https://www.pyopensci.org/python-package-guide/documentation +:::{button-link} :color: info :class: sd-rounded-pill @@ -95,7 +95,7 @@ Click here to read about our packaging documentation requirements. ::: (src-layout-test)= -## The src/ layout and testing +## The src layout and testing The benefit of using the **src/package** layout is that it ensures tests are run against the installed version of your package rather than the files in your package @@ -105,7 +105,7 @@ your package is installed. If `tests/` are outside the **src/package** directory, they aren't included in the package's [wheel](python-wheel). This makes your package size slightly smaller, which places a smaller storage burden on PyPI, and makes them faster to fetch. -- [Read more about reasons to use the **src/package** layout](https://hynek.me/articles/testing-packaging/) +* [Read more about reasons to use the **src/package** layout](https://hynek.me/articles/testing-packaging/) :::{admonition} How Python discovers and prioritizes importing modules