chore: drop Python 3.10 support, fix 3.14 CI - #21
Merged
Merged
Conversation
hier-config 4.x requires Python >=3.11, so 3.10 no longer resolves. Drop it from requires-python, the CI matrix, classifiers, and docs, and raise the pydantic pin to >=2.12 so pydantic-core ships a cp314 wheel; the minimum (core 2.27.x) has none and the 3.14 CI job fails building it from source via PyO3 0.22 (max 3.13).
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.
Summary
hier-config 4.x requires Python >=3.11, so 3.10 can no longer resolve dependencies. This drops 3.10 support and fixes the pre-existing Python 3.14 CI failure.
Changes
^3.10→^3.11(pyproject.toml).github/workflows/test-app.yamlpydantic = ">=2.12,<3"— the previously-resolved minimum (pydantic 2.10.3 / pydantic-core 2.27.1) has no cp314 wheel, so the 3.14 job built it from source and failed (PyO3 0.22 caps at 3.13). Lock now resolves pydantic 2.13.5 / pydantic-core 2.46.5.Validation
poetry installsucceeds, full suite 39 passed, 100% coveragescripts/build.py lintandpytest --coverageclean (only pre-existing yamllint warnings remain)