@@ -88,7 +88,7 @@ def generate_with_copier(
8888 ),
8989 "github_username" : cookiecutter_context .get ("github_username" , "your-username" ),
9090 "version" : cookiecutter_context .get ("version" , "0.1.0" ),
91- "python_version" : python_version ,
91+ "python_version" : python_version , # Uses override for RAG + Python 3.14
9292 "aegis_version" : cookiecutter_context .get ("aegis_version" , "0.0.0" ),
9393 # Convert yes/no strings to booleans
9494 AnswerKeys .SCHEDULER : cookiecutter_context [AnswerKeys .SCHEDULER ] == "yes" ,
@@ -197,11 +197,10 @@ def generate_with_copier(
197197 # AI needs seeding when using persistence backend (same condition as migrations)
198198 ai_needs_seeding = ai_needs_migrations
199199
200- # python_version was already determined earlier (with RAG override if needed)
201200 run_post_generation_tasks (
202201 project_path ,
203202 include_migrations = include_migrations ,
204- python_version = python_version ,
203+ python_version = copier_data [ " python_version" ] ,
205204 seed_ai = ai_needs_seeding ,
206205 skip_llm_sync = skip_llm_sync ,
207206 project_slug = cookiecutter_context ["project_slug" ],
0 commit comments