I'm running a Django project using sqlite as one of the databases. I would like to run the most recent SQLite version when running the project. By that I mean the most recent sqlite binary, not the sqlite python library.
I have a local sqlite3 binary that is not the system default and I can't change the default sqlite3 version.
I'm not using Django's ORM but have replaced it with a standalone SQLAlchemy version.
I've found one related link but that had to do with running the most recent python sqlite library version.