From 83f3991f41dc708ffbd98f16d0f2ba59edeb089b Mon Sep 17 00:00:00 2001 From: Jim Mussared Date: Fri, 10 Nov 2023 16:07:35 +1100 Subject: [PATCH] lcd160cr: Remove support for options in manifest. This is the last remaining use of the "options" feature. Nothing in the main repo which `require()`'s this package sets it. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared --- micropython/drivers/display/lcd160cr/manifest.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/micropython/drivers/display/lcd160cr/manifest.py b/micropython/drivers/display/lcd160cr/manifest.py index 5ce05571..9e18a02a 100644 --- a/micropython/drivers/display/lcd160cr/manifest.py +++ b/micropython/drivers/display/lcd160cr/manifest.py @@ -1,8 +1,3 @@ metadata(description="LCD160CR driver.", version="0.1.0") -options.defaults(test=False) - module("lcd160cr.py", opt=3) - -if options.test: - module("lcd160cr_test.py", opt=3)