From 8ccfa837a316d6dd5707ddbda7996167fc163825 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Mon, 6 Jul 2020 15:33:56 -0700 Subject: [PATCH] Turn off 4.x bundles and enable 6.x --- circuitpython_build_tools/target_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuitpython_build_tools/target_versions.py b/circuitpython_build_tools/target_versions.py index f4264b7..3e1b17b 100644 --- a/circuitpython_build_tools/target_versions.py +++ b/circuitpython_build_tools/target_versions.py @@ -25,6 +25,6 @@ # The tag specifies which version of CircuitPython to use for mpy-cross. # The name is used when constructing the zip file names. VERSIONS = [ - {"tag": "4.0.0-alpha.2", "name": "4.x"}, {"tag": "5.0.0-alpha.0", "name": "5.x"}, + {"tag": "6.0.0-alpha.0", "name": "6.x"}, ]