Skip to content

Commit b2aa4aa

Browse files
authored
🐛 Fix python requires semver bounds (#6)
1 parent 03468a0 commit b2aa4aa

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
include:
14-
- os: macos-14
15-
profile_path: profiles/x86_64/mac-14/
16-
17-
- os: macos-15
18-
profile_path: profiles/x86_64/mac-15/
19-
2014
- os: macos-14
2115
profile_path: profiles/armv8/mac-14/
2216

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class libhal_mac_conan(ConanFile):
3030
topics = ("mac", "osx", "darwin")
3131
settings = "compiler", "build_type", "os", "arch"
3232

33-
python_requires = "libhal-bootstrap/[^4.2.1]"
33+
python_requires = "libhal-bootstrap/[>=4.3.0 <5]"
3434
python_requires_extend = "libhal-bootstrap.library"
3535

3636
def requirements(self):

0 commit comments

Comments
 (0)