Skip to content

Commit

Permalink
use cibuildwheel to package instead
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsadhwani committed Nov 20, 2023
1 parent 6fb78aa commit 80df5bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_compiled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
python-version: 3.11

- name: Install deps
run: python -m pip install mypy[mypyc] wheel auditwheel twine
run: python -m pip install mypy[mypyc] cibuildwheel twine

- name: Build wheels
run: |
Expand Down
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def main() -> int:
with open("./setup.py", "w") as setup_file:
setup_file.write(setup_code)

process = subprocess.run(["python", "setup.py", "sdist", "bdist_wheel"])
process = subprocess.run(["cibuildwheel"])
return process.returncode

library_name = args.library
Expand Down

0 comments on commit 80df5bd

Please sign in to comment.