Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .changeset/replace-pysqlcipher3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"think-app": patch
---

Replace unmaintained pysqlcipher3 with rotki-pysqlcipher3

- `pysqlcipher3` is no longer maintained (last updated 2021)
- `rotki-pysqlcipher3` is actively maintained with cross-platform wheels
- Drop-in replacement using the same `pysqlcipher3` import namespace
- Python version locked to 3.12.x (rotki-pysqlcipher3 wheels only support 3.11-3.12)
4 changes: 2 additions & 2 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ authors = ["Your Name <you@example.com>"]
package-mode = false

[tool.poetry.dependencies]
python = "^3.12,<3.14"
python = "^3.12,<3.13"
fastapi = "^0.115.0"
uvicorn = "^0.32.0"
openai = "^1.54.0"
pydantic = "^2.9.0"
pydantic-settings = "^2.6.0"
httpx = "^0.27.0"
aiosqlite = "^0.20.0"
pysqlcipher3 = "^1.2.0"
rotki-pysqlcipher3 = "^2024.10.1"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.0"}
sqlite-vec = "^0.1.0"
numpy = "^2.0.0"
Expand Down