Optimized Python package building

This commit is contained in:
Kevin Veen-Birkenbach
2026-07-14 12:05:08 +02:00
parent a8c321fca1
commit 557fe159d5
8 changed files with 45 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
"""Read-only access to the image catalog (distributions.yml in the repo root)."""
"""Read-only access to the image catalog (distributions.yml in the package)."""
from functools import cache
@@ -6,7 +6,7 @@ import yaml
from lim import config
CATALOG_PATH = config.REPOSITORY_PATH / "distributions.yml"
CATALOG_PATH = config.CATALOG_PATH
@cache