Skip to content

Commit

Permalink
🐛 Fix libhal usage after conan upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Khalil Estell authored and kammce committed Nov 27, 2023
1 parent 9f791f7 commit 72d2dcc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

class libhal_arm_cortex_conan(ConanFile):
name = "libhal-armcortex"
version = "2.2.0"
version = "2.2.1"
license = "Apache-2.0"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://libhal.github.io/libhal-armcortex"
Expand Down Expand Up @@ -63,12 +63,12 @@ def validate(self):

def build_requirements(self):
self.tool_requires("cmake/3.27.1")
self.tool_requires("libhal-cmake-util/3.0.0")
self.tool_requires("libhal-cmake-util/3.0.1")
self.test_requires("boost-ext-ut/1.1.9")

def requirements(self):
self.requires("libhal/[^2.0.1]")
self.requires("libhal-util/[^3.0.0]")
self.requires("libhal/[^2.0.3]", transitive_headers=True)
self.requires("libhal-util/[^3.0.1]")

def layout(self):
cmake_layout(self)
Expand Down

0 comments on commit 72d2dcc

Please sign in to comment.