Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
pveigadecamargo committed Feb 21, 2024
1 parent 315cbce commit ba0d882
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/debug_tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Run tests for debugging sigabrt

on: [pull_request]
#on: [pull_request]

jobs:

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Documentation

on:
push:
branches:
- develop
pull_request:
release:
#on:
# push:
# branches:
# - develop
# pull_request:
# release:

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_linux_with_coverage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Code coverage

on: [pull_request]
#on: [pull_request]

jobs:
testing:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Tests on all platforms with linting

on: [pull_request]
#on: [pull_request]

jobs:
linting:
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,16 +84,16 @@ test-extras = []

container-engine = "docker"

manylinux-x86_64-image = "manylinux2014"
manylinux-aarch64-image = "manylinux2014"
manylinux-pypy_x86_64-image = "manylinux2014"
manylinux-pypy_aarch64-image = "manylinux2014"
manylinux-x86_64-image = "manylinux_2_24"
manylinux-aarch64-image = "manylinux_2_24"
manylinux-pypy_x86_64-image = "manylinux_2_24"
manylinux-pypy_aarch64-image = "manylinux_2_24"

[tool.cibuildwheel.linux]
archs = ["auto", "aarch64"]
build = ["cp310-*", "cp311-*", "cp312-*"]
repair-wheel-command =["pip install pyarrow",
'sudo python -c "import pyarrow; pyarrow.create_library_symlinks()"',
'python -c "import pyarrow; pyarrow.create_library_symlinks()"',
"auditwheel repair -w {dest_dir} {wheel}"]

[tool.cibuildwheel.macos]
Expand Down

0 comments on commit ba0d882

Please sign in to comment.