Skip to content

Commit

Permalink
⬆️ Allow ^3.0.0 libhal-util
Browse files Browse the repository at this point in the history
  • Loading branch information
Khalil Estell authored and kammce committed Aug 6, 2023
1 parent 5ffec2b commit 6299356
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
15 changes: 2 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: ✅ Checks
on:
workflow_dispatch:
pull_request:
release:
types: [published]
push:
tags:
- "*"
branches:
- main
schedule:
Expand All @@ -15,14 +15,3 @@ jobs:
ci:
uses: libhal/ci/.github/workflows/[email protected]
secrets: inherit

release:
needs: [ci]
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-22.04
steps:
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
generate_release_notes: true
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ def lazy_lt_semver(v1, v2):
f"{self.name} {self.version} requires C++{self._min_cppstd}, which your compiler ({compiler}-{version}) does not support")

def requirements(self):
self.requires("libhal/[^2.0.0]")
self.requires("libhal-util/[^2.0.0]")
self.requires("libhal/[^2.0.0 ]")
self.requires("libhal-util/[^2.0.0 || ^3.0.0]")
self.test_requires("boost-ext-ut/1.1.9")

def layout(self):
Expand Down

0 comments on commit 6299356

Please sign in to comment.