Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
}

- name: build wheels
uses: pypa/cibuildwheel@v4.0.0
uses: pypa/cibuildwheel@v4.1.0
env:
CIBW_BUILD_VERBOSITY: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
}

- name: build wheels
uses: pypa/cibuildwheel@v4.0.0
uses: pypa/cibuildwheel@v4.1.0
env:
CIBW_BUILD_VERBOSITY: 1

Expand Down
5 changes: 3 additions & 2 deletions tests/test_wheels_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,11 @@ def test_wheels_workflow_uses_cibuildwheel_action():
assert any("pypa/cibuildwheel" in s.get("uses", "") for s in steps)


def test_wheel_workflows_use_cibuildwheel_v4_0_0():
def test_wheel_workflows_use_cibuildwheel_v4_1_0():
for path in (".github/workflows/wheels.yml", ".github/workflows/release.yml"):
text = _read(path)
assert "pypa/cibuildwheel@v4.0.0" in text
assert "pypa/cibuildwheel@v4.1.0" in text
assert "pypa/cibuildwheel@v4.0.0" not in text
assert "pypa/cibuildwheel@v3.4.1" not in text
assert "pypa/cibuildwheel@v2.21.3" not in text

Expand Down