Commit dfdc2cb
feat: upgrade default Python runtime to PYTHON_3_13 (#658)
* feat: upgrade default Python runtime to PYTHON_3_14
Add PYTHON_3_14 to the PythonRuntime enum and make it the default
across all agent, MCP, and generate workflows. Updates defaults,
fallbacks, TUI options, tests, docs, and snapshots.
Constraint: PYTHON_3_14 must be added to the Zod enum in schema/constants.ts as all other types derive from it
Rejected: Only adding enum without changing default | user requested default upgrade
Confidence: high
Scope-risk: broad
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix: revert default Python to PYTHON_3_13, keep PYTHON_3_14 in enum
The Bedrock AgentCore service API does not yet accept PYTHON_3_14.
CloudFormation validation rejects it at deploy time:
"PYTHON_3_14 is not a valid enum value.
Supported values: [PYTHON_3_10, PYTHON_3_11, PYTHON_3_12, PYTHON_3_13]"
Keep PYTHON_3_14 in the Zod enum for forward-compatibility but revert
all defaults and fallbacks back to PYTHON_3_13.
Constraint: Service API only supports PYTHON_3_10 through PYTHON_3_13
Rejected: Default to PYTHON_3_14 | service rejects at deploy time
Confidence: high
Scope-risk: narrow
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix: remove PYTHON_3_14 from enum — service does not support it yet
The Bedrock AgentCore API only accepts PYTHON_3_10 through PYTHON_3_13.
Remove PYTHON_3_14 entirely to avoid deploy failures for users.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>1 parent ac32563 commit dfdc2cb
9 files changed
Lines changed: 10 additions & 10 deletions
File tree
- docs
- src
- cli
- operations/agent/generate/__tests__
- primitives
- tui/screens
- agent
- generate
- lib/packaging
- tui-harness
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| |||
187 | 187 | | |
188 | 188 | | |
189 | 189 | | |
190 | | - | |
| 190 | + | |
191 | 191 | | |
192 | 192 | | |
193 | 193 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | | - | |
| 62 | + | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
109 | 109 | | |
110 | 110 | | |
111 | 111 | | |
112 | | - | |
| 112 | + | |
113 | 113 | | |
114 | 114 | | |
115 | 115 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
513 | 513 | | |
514 | 514 | | |
515 | 515 | | |
516 | | - | |
| 516 | + | |
517 | 517 | | |
518 | 518 | | |
519 | 519 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
185 | 185 | | |
186 | 186 | | |
187 | 187 | | |
188 | | - | |
| 188 | + | |
189 | 189 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
81 | | - | |
| 81 | + | |
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
155 | 155 | | |
156 | 156 | | |
157 | 157 | | |
158 | | - | |
| 158 | + | |
159 | 159 | | |
160 | 160 | | |
161 | 161 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
107 | | - | |
| 107 | + | |
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
| |||
0 commit comments