Skip to content

Migrate to planus from flatc #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
args: --release --out dist --find-interpreter -Z build-std=std,panic_abort
sccache: 'true'
manylinux: auto
before-script-linux: rustup component add rust-src --toolchain nightly
before-script-linux: |
rustup component add rustfmt
rustup component add rust-src --toolchain nightly
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -61,6 +63,7 @@ jobs:
run: |
rustup toolchain install nightly
rustup component add rust-src --toolchain nightly
rustup component add rustfmt --toolchain nightly
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ docs/_build/
.python-version

# flatbuffers
src/generated
src/planus_flat.rs
src/python
*.pyi
classes.txt
Loading