Open WebUI v0.9.1 is a focused maintenance release that fixes two packaging mistakes responsible for startup crashes in standard Python installations. The update ensures that critical dependencies are now declared correctly in the published package metadata, preventing missing-module errors that previously blocked application startup for both SQLite-based and PostgreSQL-based deployments.
The most important fix in v0.9.1 is the addition of aiosqlite to pyproject.toml. Earlier builds included the package in requirements.txt but failed to publish it as part of the package metadata, which meant users installing Open WebUI with pip or uv could hit a ModuleNotFoundError at startup.
The release also adds asyncpg to pyproject.toml. This addresses the same packaging gap for PostgreSQL users, ensuring that database-related components are installed automatically instead of failing only after launch.
In both cases, the issue was not that the software lacked support for these dependencies internally, but that the published package metadata did not fully match the project’s runtime requirements. Version 0.9.1 closes that gap.
This release improves installation reliability in a practical way. Teams deploying Open WebUI through standard Python packaging tools expect dependency resolution to work automatically, and packaging mismatches can create confusing failures that appear only when the service starts.
For operators using SQLite, the aiosqlite fix removes a startup blocker from fresh installs. For PostgreSQL-backed environments, the asyncpg fix is equally important because it prevents deployment breakage in production-style database setups.
While v0.9.1 does not introduce major new features, it delivers a meaningful quality improvement by making installation behavior consistent with documented runtime requirements. That kind of release matters for infrastructure teams because it reduces failed deployments, manual troubleshooting, and environment-specific surprises.
Official Source: https://github.com/open-webui/open-webui/releases/tag/v0.9.1