From 5fd54fa603394e5853271c07ecc85f93f2ccb6cc Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Sat, 8 Feb 2025 11:23:29 -0500 Subject: [PATCH] drop 8.x bundle support --- circup/shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circup/shared.py b/circup/shared.py index 25a400c..6fe73bd 100644 --- a/circup/shared.py +++ b/circup/shared.py @@ -21,7 +21,7 @@ BAD_FILE_FORMAT = "Invalid" DATA_DIR = appdirs.user_data_dir(appname="circup", appauthor="adafruit") #: Module formats list (and the other form used in github files) -PLATFORMS = {"py": "py", "8mpy": "8.x-mpy", "9mpy": "9.x-mpy"} +PLATFORMS = {"py": "py", "9mpy": "9.x-mpy"} #: Timeout for requests calls like get() REQUESTS_TIMEOUT = 30