Skip to content

Commit

Permalink
Fix sdist upload and add Linux ARM back
Browse files Browse the repository at this point in the history
  • Loading branch information
Twixes committed Oct 6, 2023
1 parent 2358d80 commit f600f7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-hogql-parser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

- uses: actions/upload-artifact@v3
with:
path: hogql_parser/wheelhouse/*.whl
path: hogql_parser/wheelhouse/*.{whl,tar.gz}

publish:
name: Publish on PyPI
Expand Down
3 changes: 2 additions & 1 deletion hogql_parser/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ build = [ # Build CPython wheels on Linux and macOS, for x86 as well as ARM
"cp3*-macosx_x86_64",
"cp3*-macosx_arm64",
"cp3*-manylinux_x86_64",
"cp3*-manylinux_aarch64",
]
build-frontend = "build" # This is successor to building with pip
build-frontend = "build" # This is the successor to building with pip

[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"] # We could also build a universal wheel, but separate ones are lighter individually
Expand Down

0 comments on commit f600f7e

Please sign in to comment.