Skip to content

Commit

Permalink
Fix wheel build (#40)
Browse files Browse the repository at this point in the history
This PR attempts to fix the wheel build: we failed to build wheels for
cp312-manylinux_i686 for the 1.3.2 release, I believe because the oldest
supported numpy version for 3.12 no longer supports 32-bit Linux.
  • Loading branch information
mdickinson authored Oct 8, 2023
1 parent e1810f8 commit 164f4d4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog for ibm2ieee
======================

Release 1.3.3
-------------

Release date: 2023-10-08

This bugfix release fixes the wheel building configuration by removing
support for cp312-manylinux_i686.

Release 1.3.2
-------------

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'ibm2ieee'
version = '1.3.2'
version = '1.3.3'
description = 'Convert IBM hexadecimal floating-point to IEEE 754 floating-point'
readme = 'README.rst'
requires-python = ">=3.7"
Expand Down Expand Up @@ -38,7 +38,7 @@ line_length = 79
order_by_type = 'False'

[tool.cibuildwheel]
skip = "pp* *-musllinux*"
skip = "pp* *-musllinux* cp312-manylinux_i686"

[tool.cibuildwheel.macos]
archs = ["auto", "universal2"]
Expand Down

0 comments on commit 164f4d4

Please sign in to comment.