Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
make toml-sort
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelange committed Feb 27, 2024
1 parent 149cd6e commit 35d747b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cibuildwheel.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.cibuildwheel]
skip = ["pp*", "*-musllinux*"]
skip = ["*-musllinux*", "pp*"]
test-extras = "test"
test-command = [
"PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 python {project}/psutil/tests/runner.py",
"PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 python {project}/psutil/tests/test_memleaks.py"
"PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 python {project}/psutil/tests/test_memleaks.py",
]

[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
archs = ["arm64", "x86_64"]

[tool.cibuildwheel.windows]
# psutil tests do not like running from a virtualenv with python>=3.7
Expand All @@ -16,7 +16,7 @@ archs = ["x86_64", "arm64"]
build = "cp36-*"
test-command = [
"python {project}/psutil/tests/runner.py",
"python {project}/psutil/tests/test_memleaks.py"
"python {project}/psutil/tests/test_memleaks.py",
]

[tool.cibuildwheel.windows.environment]
Expand Down

0 comments on commit 35d747b

Please sign in to comment.