feat: restore Python 3.10 soft-installability - #778
Merged
Conversation
- Restore requires-python to >=3.10 for pip install compat - Re-add Python 3.10 classifier - Add [tool.uv] environments to keep lockfile at 3.11+ resolution - Update README with supported Python versions table - Fix dbt-core version reference (1.10 -> 1.11) - Update CHANGELOG v1.11.0 entry - Regenerate uv.lock with environments filter Refs #758, #762
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
Restore Python 3.10 as a soft-compatible install target —
pip installworks on 3.10, but development tooling (uv sync, CI, pre-commit,
devcontainer) remains pinned to 3.11+.
Background
PR #762 dropped Python 3.10 alongside the dbt-core 1.11 bump.
After discussion (#762), the consensus was to keep
requires-pythonat
>=3.10since:sys.version_infobranching in this adapterWhat changed
requires-pythonrestored to>=3.10Programming Language :: Python :: 3.10classifier re-added[tool.uv] environments = "python_version >= '3.11'"keeps lockfileresolution at 3.11+
compatibility table
uv.lockregenerated with the environments filter appliedNote
Python 3.10 compatibility is officially unmaintained — it is installable
as a convenience but is not tested in CI and receives no support.
Refs #758, #762