Skip to content
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

ci: try out-of-tree builds #67

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
submodules: true

- uses: pypa/cibuildwheel@v2.3.0
- uses: pypa/cibuildwheel@v2.3.1
env:
CIBW_ARCHS_MACOS: auto universal2

Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Expand Up @@ -21,5 +21,8 @@ testpaths = ["tests"]
test-command = "pytest {project}/tests"
test-extras = ["test"]
test-skip = ["*universal2:arm64"]

# Setuptools bug causes collision between pypy and cpython artifacts
before-build = "rm -rf {project}/build"
[tool.cibuildwheel.environment]
PIP_USE_DEPRECATED = "out-of-tree-build"