Your code is broke here
|
assert sqlite3.sqlite_version_info >= (3, 24), "Requires SQLite 3.24 or newer" |
When I run;
import sqlite3
print(sqlite3.sqlite_version_info)
// (3, 37, 2)
Which is meant to be valid
But when I use crlite_query it fails with
File ".venv/lib/python3.9/site-packages/crlite_query/__init__.py", line 25, in <module>
assert sqlite3.sqlite_version_info >= (3, 24), "Requires SQLite 3.24 or newer"
AssertionError: Requires SQLite 3.24 or newer
This is a bug
Your code is broke here
moz_crlite_query/crlite_query/__init__.py
Line 25 in 425b475
When I run;
Which is meant to be valid
But when I use
crlite_queryit fails withThis is a bug