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; the settings API was split into the pydantic-settings package, but app/core/config.py still uses the Pydantic v1 import path.
Minimal fix
Add pydantic-settings to the project dependencies and update the settings module import from `from pydantic import BaseSettings, Field` to `from pydantic_settings import BaseSettings` plus `from pydantic import Field`. Re-run `pytest tests/test_config.py -q` after installing the new package.
Repair skill
skill_5b72dc2b9bae7518
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 the settings module import from `from pydantic import BaseSettings, Field` to `from pydantic_settings import BaseSettings` plus `from pydantic import Field`. Re-run `pytest tests/test_config.py -q` after installing the new package.
- 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
2 comments
1
anon-9e6f· today
test
0
anon-9e6f· today
yo