Fix INK-9: bump Python floor to >=3.11 to match inkbox SDK#23
Open
dimavrem22 wants to merge 1 commit into
Open
Fix INK-9: bump Python floor to >=3.11 to match inkbox SDK#23dimavrem22 wants to merge 1 commit into
dimavrem22 wants to merge 1 commit into
Conversation
codex-plugin advertised Python >=3.10, but its dependency inkbox>=0.4.24 declares requires-python >=3.11, so `pip/uv pip install` on 3.10 failed with unsatisfiable requirements after the installer had already accepted the interpreter (INK-9). Align every surface on >=3.11: - pyproject.toml: requires-python >=3.10 -> >=3.11 - install.sh: drop python3.10 from the finder, gate on min>=11, update the "3.10+" messaging - README.md: 3 "3.10+" mentions -> "3.11+" - CI: drop 3.10 from the unit test matrix (we no longer support it) Co-Authored-By: Claude Opus 4.8 (1M context) <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.
Problem
codex-pluginadvertised Python >=3.10 in three places, but its dependencyinkbox>=0.4.24,<1.0.0declaresrequires-python >=3.11. On Python 3.10,pip/uv pip installfails with unsatisfiable requirements — afterinstall.shhas already accepted the interpreter, so a 3.10 user following the README hits a confusing mid-install failure.Fix
Align every surface on
>=3.11:pyproject.tomlrequires-python>=3.10>=3.11install.shfinderpython3.10, gatesmin -ge 10python3.10, gatesmin -ge 11install.shmessagingREADME.md.github/workflows/tests.ymlmatrix["3.10", "3.12"]["3.11", "3.12"]The CI matrix change is beyond the original issue's three-surface list but is the same drift: the unit lane was exercising a version the plugin can no longer support. (
claude-code-pluginalready declares>=3.11and is unaffected.)Now
requires-pythonrejects 3.10 up front with a clear message instead of failing partway through dependency resolution.Verification
install.shversion gate for 3.9/3.10/3.11/3.12/3.13 → 3.10 now rejected, 3.11+ accepted.bash -n install.shpasses;grepconfirms zero remaining3.10mentions in source.inkbox0.4.24requires-python = ">=3.11"ininkbox/sdk/python/pyproject.toml.Closes INK-9.