From 8a054c5d8573421ab5e2e2e804cc07a5efb1bc9c Mon Sep 17 00:00:00 2001 From: Aaron Date: Sun, 14 Dec 2025 17:59:50 -0500 Subject: [PATCH] Default manifests to public raw files (no token needed) --- pikit_api/constants.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pikit_api/constants.py b/pikit_api/constants.py index 8af6aef..0be0dd2 100644 --- a/pikit_api/constants.py +++ b/pikit_api/constants.py @@ -40,13 +40,13 @@ ALL_PATTERNS = [ # Release updater DEFAULT_MANIFEST_URL = os.environ.get( "PIKIT_MANIFEST_URL", - # Stable manifest (public release asset) - "https://git.44r0n.cc/44r0n7/pi-kit/releases/download/v0.1.2/manifest.json", + # Stable manifest (raw in repo, public) + "https://git.44r0n.cc/44r0n7/pi-kit/raw/branch/main/manifests/manifest-stable.json", ) DEFAULT_DEV_MANIFEST_URL = os.environ.get( "PIKIT_DEV_MANIFEST_URL", - # Dev manifest (public release asset) - "https://git.44r0n.cc/44r0n7/pi-kit/releases/download/v0.1.3-dev1/manifest.json", + # Dev manifest (raw in repo, public) + "https://git.44r0n.cc/44r0n7/pi-kit/raw/branch/main/manifests/manifest-dev.json", ) AUTH_TOKEN = os.environ.get("PIKIT_AUTH_TOKEN")