ci: drop the libhdf5-dev system package entirely - #15158
Merged
cclauss merged 1 commit intoSep 2, 2026
Merged
Conversation
Follow-up to TheAlgorithms#15157. h5py ships self-contained manylinux/musllinux wheels (aarch64 included) that bundle their own HDF5, so no system libhdf5 is needed to import or use it. Removing the apt-get step speeds up CI and removes a network dependency; CI will confirm.
cclauss
enabled auto-merge (squash)
September 2, 2026 10:40
cclauss
approved these changes
Sep 2, 2026
cclauss
left a comment
Member
There was a problem hiding this comment.
This is wonderful!! Thanks much.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe your change:
Follow-up to #15157, per @cclauss's suggestion to try dropping
libhdf5-devas well.This removes the
sudo apt-get install --yes libhdf5-devstep frombuild.yml,project_euler.yml(both jobs) andsphinx.yml. Theh5pywheels on PyPI (manylinux and musllinux, x86-64 and aarch64) are self-contained — they bundle their own copy of the HDF5 C library — so no systemlibhdf5is required toimport h5pyor run the tests. Dropping the step removes a network/apt dependency and speeds CI up a little. CI on this PR confirms tests still pass without it.Checklist: