Skip to content

Commit

Permalink
Remove 32-bit builds for Windows (#1077)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek authored Dec 3, 2023
1 parent f5fd222 commit b15daaf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build-hatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ jobs:
# Windows
- target: x86_64-pc-windows-msvc
os: windows-2022
- target: i686-pc-windows-msvc
os: windows-2022
# macOS
- target: aarch64-apple-darwin
os: macos-12
Expand Down
5 changes: 0 additions & 5 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@
```
msiexec /passive /i https://github.com/pypa/hatch/releases/download/hatch-v<HATCH_LATEST_VERSION>/hatch-<HATCH_LATEST_VERSION>-x64.msi
```
=== "x86"
```
msiexec /passive /i https://github.com/pypa/hatch/releases/download/hatch-v<HATCH_LATEST_VERSION>/hatch-<HATCH_LATEST_VERSION>-x86.msi
```
2. Restart your terminal.
3. To verify that the shell can find and run the `hatch` command in your `PATH`, use the following command.

Expand All @@ -83,7 +79,6 @@ After downloading the archive corresponding to your platform and architecture, e

=== "Windows"
- [hatch-<HATCH_LATEST_VERSION>-x86_64-pc-windows-msvc.zip](https://github.com/pypa/hatch/releases/download/hatch-v<HATCH_LATEST_VERSION>/hatch-<HATCH_LATEST_VERSION>-x86_64-pc-windows-msvc.zip)
- [hatch-<HATCH_LATEST_VERSION>-i686-pc-windows-msvc.zip](https://github.com/pypa/hatch/releases/download/hatch-v<HATCH_LATEST_VERSION>/hatch-<HATCH_LATEST_VERSION>-i686-pc-windows-msvc.zip)

## pip

Expand Down
8 changes: 0 additions & 8 deletions pyoxidizer.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ AUTHOR = "Python Packaging Authority"
def make_msi(target):
if target == "x86_64-pc-windows-msvc":
arch = "x64"
elif target == "i686-pc-windows-msvc":
arch = "x86"
else:
arch = "unknown"

Expand Down Expand Up @@ -48,18 +46,12 @@ def make_exe_installer():
)

bundle.add_vc_redistributable("x64")
bundle.add_vc_redistributable("x86")

bundle.add_wix_msi_builder(
builder=make_msi("x86_64-pc-windows-msvc"),
display_internal_ui=True,
install_condition="VersionNT64",
)
bundle.add_wix_msi_builder(
builder=make_msi("i686-pc-windows-msvc"),
display_internal_ui=True,
install_condition="Not VersionNT64",
)

return bundle

Expand Down

0 comments on commit b15daaf

Please sign in to comment.