Bump python_requires to >=3.11; drop universal wheel flag - #111
Merged
Conversation
The dependency stack (snakemake 9 needs >=3.11, numpy 2.5 needs >=3.11, pandas 3.0 needs >=3.10) cannot install on the previously-declared >=3.8, so pip would offer an install it can't resolve. Bump python_requires to >=3.11 to match reality, advertise 3.11/3.12 via classifiers, and drop the stale [bdist_wheel] universal=1 flag (that marks a py2/py3 wheel; mgatk is py3-only). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Aligns packaging metadata with the actual dependency floor.
python_requires='>=3.8'→'>=3.11'. The current stack (snakemake 9, numpy 2.5, pandas 3.0) requires ≥3.11, so the old declaration advertised installs pip cannot resolve. CI already runs on 3.11/3.12.Programming Language :: Python :: 3.11/3.12classifiers.[bdist_wheel] universal=1from setup.cfg — that flags a py2/py3 universal wheel, but mgatk is py3-only.No code or dependency-version pins changed; nothing else needs a floor bump (the package's own imports are 3.11-compatible and rely on pip to resolve compatible transitive versions under the new
python_requires).🤖 Generated with Claude Code