Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Commit

Permalink
⬆️ Upgrade to libhal/4.x.y
Browse files Browse the repository at this point in the history
  • Loading branch information
kammce committed Aug 3, 2024
1 parent 70a80c4 commit 79d3235
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 🚀 Deploy

on:
workflow_dispatch:

jobs:
deploy:
if: startsWith(github.ref, 'refs/tags/')
uses: libhal/ci/.github/workflows/[email protected]
with:
version: ${{ github.ref_name }}
secrets: inherit
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
# libhal-pca

[![✅ Checks](https://github.com/libhal/libhal-pca/actions/workflows/ci.yml/badge.svg)](https://github.com/libhal/libhal-pca/actions/workflows/ci.yml)
[![Coverage](https://libhal.github.io/libhal-pca/coverage/coverage.svg)](https://libhal.github.io/libhal-pca/coverage/)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/b084e6d5962d49a9afcb275d62cd6586)](https://www.codacy.com/gh/libhal/libhal-pca/dashboard?utm_source=github.com&utm_medium=referral&utm_content=libhal/libhal-pca&utm_campaign=Badge_Grade)
[![GitHub stars](https://img.shields.io/github/stars/libhal/libhal-pca.svg)](https://github.com/libhal/libhal-pca/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/libhal/libhal-pca.svg)](https://github.com/libhal/libhal-pca/network)
[![GitHub issues](https://img.shields.io/github/issues/libhal/libhal.svg)](https://github.com/libhal/libhal-pca/issues)
Expand All @@ -29,9 +27,3 @@ See [`CONTRIBUTING.md`](CONTRIBUTING.md) for details.
## License

Apache 2.0; see [`LICENSE`](LICENSE) for details.

## Disclaimer

This project is not an official Google project. It is not supported by
Google and Google specifically disclaims all warranties as to its quality,
merchantability, or fitness for a particular purpose.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from conan import ConanFile

required_conan_version = ">=2.0.14"
required_conan_version = ">=2.2.2"


class libhal_pca_conan(ConanFile):
Expand All @@ -25,7 +25,7 @@ class libhal_pca_conan(ConanFile):
topics = ("libhal", "driver", "i2c", "nxp", "ti")
settings = "compiler", "build_type", "os", "arch"

python_requires = "libhal-bootstrap/[^1.0.0]"
python_requires = "libhal-bootstrap/[^3.0.0]"
python_requires_extend = "libhal-bootstrap.library"

def requirements(self):
Expand Down
4 changes: 2 additions & 2 deletions demos/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@


class demos(ConanFile):
python_requires = "libhal-bootstrap/[^1.0.0]"
python_requires = "libhal-bootstrap/[^3.0.0]"
python_requires_extend = "libhal-bootstrap.demo"

def requirements(self):
bootstrap = self.python_requires["libhal-bootstrap"]
bootstrap.module.add_demo_requirements(self)
self.requires("libhal-pca/[^3.0.0 || latest]")
self.requires("libhal-pca/[^4.0.0 || latest]")

0 comments on commit 79d3235

Please sign in to comment.