-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Move the Python bindings into a standalone repository (#1)
- Loading branch information
Showing
13 changed files
with
117 additions
and
1,337 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -22,12 +22,6 @@ jobs: | |
- name: cargo fmt | ||
run: cargo fmt --all -- --check | ||
|
||
- name: clang-format | ||
uses: jidicula/[email protected] | ||
with: | ||
clang-format-version: 15 | ||
check-path: bindings/c | ||
|
||
- name: ruff format | ||
uses: chartboost/ruff-action@v1 | ||
with: | ||
|
@@ -39,7 +33,7 @@ jobs: | |
cargo-deny: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: EmbarkStudios/cargo-deny-action@v1 | ||
|
||
clippy: | ||
|
@@ -101,23 +95,3 @@ jobs: | |
|
||
- name: cargo test | ||
run: cargo test | ||
|
||
- name: cargo test -p accesskit_windows | ||
if: matrix.os == 'windows-2019' | ||
run: cargo test -p accesskit_windows | ||
|
||
check-c-header: | ||
runs-on: ubuntu-latest | ||
name: Check committed C header | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: install nightly toolchain | ||
uses: dtolnay/rust-toolchain@nightly | ||
|
||
- uses: dtolnay/install@master | ||
with: | ||
crate: cbindgen | ||
- run: cmake -S bindings/c -B build -DACCESSKIT_BUILD_HEADERS=ON -DACCESSKIT_BUILD_LIBRARIES=OFF | ||
- run: cmake --build build | ||
- run: cmp build/accesskit.h bindings/c/include/accesskit.h |
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
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 |
---|---|---|
|
@@ -18,3 +18,12 @@ target | |
|
||
#KDE | ||
.directory | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ |
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 +1 @@ | ||
{"common":"0.16.0","consumer":"0.24.0","platforms/macos":"0.17.0","platforms/windows":"0.22.0","platforms/winit":"0.22.0","platforms/unix":"0.12.0","bindings/c":"0.12.0","bindings/python":"0.5.0","platforms/atspi-common":"0.9.0"} | ||
{".":"0.5.0"} |
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,9 +1,8 @@ | ||
# This is the list of AccessKit authors for copyright purposes. | ||
# This is the list of accesskit-python authors for copyright purposes. | ||
# | ||
# This does not necessarily list everyone who has contributed code, since in | ||
# some cases, their employer may be the copyright holder. To see the full list | ||
# of contributors, see the revision history in source control. | ||
Matt Campbell | ||
Arnold Loubriat | ||
Google LLC | ||
Matt Campbell | ||
Leonard de Ruijter |
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
Oops, something went wrong.