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
6 changes: 6 additions & 0 deletions CHANGES/236.contrib.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Dropped the ``libffi-devel`` install from the ``cibuildwheel``
Linux ``before-all`` step. It was added in :pr:`75` so
``cffi`` could build from source during wheel testing; the
current wheel-test chain no longer pulls in ``cffi``, so the
header package is dead weight
-- by :user:`bdraco`.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ PY_COLORS = "1"
pure-python = "false"

[tool.cibuildwheel.linux]
# ccache is installed alongside libffi-devel so the compiler-cache wrapping
# Install ccache in the build container so the compiler-cache wrapping
# configured by the CI workflow (PATH=/usr/lib64/ccache:... + bind-mounted
# CCACHE_DIR) actually finds a ccache binary inside the build container.
before-all = "(yum install -y libffi-devel ccache) || (apk add --upgrade libffi-dev ccache) || (apt-get install -y libffi-dev ccache)"
# CCACHE_DIR) actually finds a ccache binary.
before-all = "(yum install -y ccache) || (apk add --upgrade ccache) || (apt-get install -y ccache)"

[tool.ruff.lint]
# Keep this list small and intentional; the rest of the project still
Expand Down
Loading