fix: Python version validation and compatibility warnings#5
Merged
Conversation
- Add validate_python_version() to normalize "3.12.5" → "3.12" and reject invalid versions (< 3.9, non-numeric, wrong format) - Add check_python_version_compatibility() to warn about prerelease versions (3.14) that may have limited package availability - Improve create_venv task error messages: detect "No interpreter found", download failures, and missing package distributions with actionable hints - Return python_version_warning field in EnvResponse when creating environments - Frontend shows warning toast when creating env with prerelease Python - Add Python 3.13 to CI test matrix (fail-fast: false) - Add 17 new venv_utils tests + 5 new router tests for version validation - i18n: pythonVersionWarning toast label in EN/DE/FR/ES Co-Authored-By: Claude Opus 4.6 <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.
Summary
Adds Python version validation on startup with clear compatibility warnings for Python 3.14+.
Changes
fix: add Python version validation and compatibility warnings