Skip to content

Commit 9cb1f09

Browse files
authored
🐛 Fix bootstrap range for test_package & lib (#7)
1 parent b2aa4aa commit 9cb1f09

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

conanfile.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
# limitations under the License.
1616

1717
from conan import ConanFile
18-
import os
1918

2019

2120
required_conan_version = ">=2.18.0"
@@ -30,7 +29,7 @@ class libhal_mac_conan(ConanFile):
3029
topics = ("mac", "osx", "darwin")
3130
settings = "compiler", "build_type", "os", "arch"
3231

33-
python_requires = "libhal-bootstrap/[>=4.3.0 <5]"
32+
python_requires = "libhal-bootstrap/[>=4.4.0 <5]"
3433
python_requires_extend = "libhal-bootstrap.library"
3534

3635
def requirements(self):

demos/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
class demos(ConanFile):
21-
python_requires = "libhal-bootstrap/[^4.2.1]"
21+
python_requires = "libhal-bootstrap/[>=4.4.0 <5]"
2222
python_requires_extend = "libhal-bootstrap.demo"
2323

2424
def requirements(self):

test_package/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
class TestPackageConan(ConanFile):
2121
settings = "os", "arch", "compiler", "build_type"
22-
python_requires = "libhal-bootstrap/[^4.2.1]"
22+
python_requires = "libhal-bootstrap/[>=4.4.0 <5]"
2323
python_requires_extend = "libhal-bootstrap.library_test_package"
2424

2525
def requirements(self):

0 commit comments

Comments
 (0)