fix: cap requires-python below 3.13 so uv stops selecting an interpreter with no wheels - #142
Merged
Merged
Conversation
… or cp314 wheel on any platform and no macOS wheel outside cp39/cp310/cp312, so uv selected 3.14 on macOS and fell through to a source build that dies on clang rejecting -march=native change: bump version to 1.0.6
pecomyint
approved these changes
Aug 28, 2026
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.
Problem
A fresh install on macOS fails for every edition —
bitshuffleis a base dependency, not part of any extra.pyproject.tomlhadrequires-python = ">=3.11"with no upper bound, souvselected Python 3.14. No prebuiltbitshuffleexists for it, so the install fell back to a source build:bitshuffle'ssetup.pyemits-march=nativewhenplatform.machine()isx86_64, which clang rejects for the universal2-arch arm64 -arch x86_64build.Why
<3.13and not<3.14bitshuffle0.5.2 is the latest release (2024-09-26). Its wheel coverage:3.13 has no wheel on any platform, so capping at
<3.14would still permit an interpreter that forces a source build.xrayutilities1.7.10 (pinned) similarly has no cp314 wheel.Change
requires-python→>=3.11,<3.13uv.lockregenerated; package set unchanged, only resolution branches for the excluded versions removedVerification
Clean install from a fresh clone on Linux (
uv sync --extra full): Python 3.12.13 selected, no source builds, all imports load includingpvaccessandepics,454 passedin 157s.Notes
<3.12and was removed in Restructure to src/dashpva/ package layout with tests and install improvements #67 during the src/ layout restructure.ubuntu-24.04only, matrix of 3.11/3.12 only, anduv sync --lockedinstalls from the lockfile rather than re-selecting an interpreter.bitshufflehas never published an arm64 macOS wheel, somacos-14/macos-15runners fail at install on every Python. Replacing it withhdf5plugin(already a dependency, same bitshuffle+LZ4 codec, wheels everywhere) would unblock that; onlycompress_lz4/decompress_lz4in four files use it. Out of scope here.