From cb660c9e0098f2650866a5cb9bbd808637538f13 Mon Sep 17 00:00:00 2001 From: Khalil Estell Date: Tue, 12 Mar 2024 07:29:27 -0700 Subject: [PATCH] :arrow_up: Upgrade min version of lpc40/3.0.3 --- conanfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index 31a8da1..4ccba41 100644 --- a/conanfile.py +++ b/conanfile.py @@ -27,7 +27,7 @@ def add_demo_requirements(conan_file: ConanFile, is_platform: bool = False): platform = str(conan_file.options.platform) if platform.startswith("lpc40"): conan_file.output.warning("Using lpc40 platform library!!") - conan_file.requires("libhal-lpc40/[^3.0.1]") + conan_file.requires("libhal-lpc40/[^3.0.3]") elif platform.startswith("stm32f1"): conan_file.output.warning("Using stm32f1 platform library!!") @@ -175,5 +175,5 @@ def test(self): class libhal_bootstrap(ConanFile): name = "libhal-bootstrap" - version = "1.0.0" + version = "1.0.1" package_type = "python-require"