Skip to content

Commit fefddc1

Browse files
committed
fix(cli)!: remove 32-bit wheels
BREAKING CHANGE: Wheels for 32-bit windows will no longer be provided. Signed-off-by: JP-Ellis <josh@jpellis.me>
1 parent f4f909a commit fefddc1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pact-python-cli/hatch_build.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,6 @@ def _pact_bin_url(self, version: str) -> str:
186186
machine = "arm64"
187187
elif platform.endswith(("x86_64", "amd64")):
188188
machine = "x86_64"
189-
elif platform.endswith(("i386", "i686", "x86", "win32")):
190-
machine = "x86"
191189
else:
192190
raise UnsupportedPlatformError(platform)
193191

pact-python-cli/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ exclude = ''
189189
# with false-positives missing libraries despite being bundled.
190190
repair-wheel-command = ""
191191

192+
[tool.cibuildwheel.windows]
193+
archs = ["auto64"]
194+
192195
[[tool.cibuildwheel.overrides]]
193196
environment.MACOSX_DEPLOYMENT_TARGET = "10.13"
194197
select = "*-macosx_x86_64"

0 commit comments

Comments
 (0)