-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from agners/use-git-submodule
Use git submodule to reference Matter SDK
- Loading branch information
Showing
5 changed files
with
51 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gitsubmodule" | ||
directory: "/" | ||
allow: | ||
- dependency-name: "connectedhomeip" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "connectedhomeip"] | ||
path = connectedhomeip | ||
url = https://github.com/project-chip/connectedhomeip.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
## Project Matter Python Device Controller Wheels | ||
## Matter Python Device Controller Wheels | ||
|
||
This repository provides the building infrastructure to build Python wheels of | ||
the Matter device controller. It uses the [official project Matter SDK](https://github.com/project-chip/connectedhomeip/) | ||
and builds the Python bindings available at `src/controller/python/`. The | ||
bindings use the official Matter implementation wriitten in C++ as a native | ||
library using ctypes bindings. The `chip-core` wheel contains this native | ||
library. Hence the `chip-core` wheel is a platform specific wheel. | ||
|
||
Binary wheels of (tagged) releases and pre-releases for Linux x86-64 and | ||
aarch64/arm64 as well as macOS aarch64/arm64 are available from our Home | ||
Assistant CHIP repositories at: | ||
|
||
- [home-assistant-chip-repl](https://pypi.org/project/home-assistant-chip-repl/) | ||
- [home-assistant-chip-core](https://pypi.org/project/home-assistant-chip-core/) (contains the native dependency) | ||
- [home-assistant-chip-clusters](https://pypi.org/project/home-assistant-chip-clusters/) | ||
|
||
This repository provides the building infrastructure to build Python wheels for | ||
the Linux platform. It uses the [official project Matter SDK](https://github.com/project-chip/connectedhomeip/) | ||
to build the wheels. |
Submodule connectedhomeip
added at
181b0c