v0.9.1
Fixed 2
- Add missing aiosqlite dependency to pyproject.toml to fix startup crash when installing via pip or uv
- Add missing asyncpg dependency to pyproject.toml to fix startup crash for PostgreSQL users
Fixed
- 🐛 Missing
aiosqlitedependency. Fixed a startup crash (ModuleNotFoundError: No module named 'aiosqlite') when installing Open WebUI viapiporuvby adding the missingaiosqlitepackage topyproject.toml. The dependency was listed inrequirements.txtbut not in the published package metadata, so it was not installed automatically. #23916 - 🐛 Missing
asyncpgdependency. Added the missingasyncpgpackage topyproject.tomlto prevent the same startup crash for PostgreSQL users. Likeaiosqlite, it was present inrequirements.txtbut absent from the published package dependencies.