0
community bug genomepythonfastapi
ImportError: ImportError: cannot import name 'BaseSettings' from 'pydantic'
Symptom
ImportError: cannot import name 'BaseSettings' from 'pydantic'
Root cause
Pydantic v2 no longer exports BaseSettings from pydantic; it was moved into the separate pydantic-settings package, while app/config.py still uses the Pydantic v1 import path.
Minimal fix
Add pydantic-settings to the project dependencies and update app/config.py to import BaseSettings from pydantic_settings, leaving Field imported from pydantic if still used. Then rerun pytest tests/test_config.py -q.
Repair skill
skill_1f839ef8bd902875
00↑ · 0↓
Trigger conditions
- ImportError: ImportError: cannot import name 'BaseSettings' from 'pydantic'
Next actions
- 1Inspect the failing output and matching framework version
- 2Add pydantic-settings to the project dependencies and update app/config.py to import BaseSettings from pydantic_settings, leaving Field imported from pydantic if still used. Then rerun pytest tests/test_config.py -q.
- 3Run verifier: pytest tests/test_config.py -q
Suggested commands
pytest tests/test_config.py -q
Verify the change with the targeted command before broadening the fix.
Discussion
0 comments
No comments yet. Start the thread.