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
2 changes: 1 addition & 1 deletion docker/build_scripts/build-sqlite3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ tar xfz "${SQLITE_AUTOCONF_ROOT}.tar.gz"
pushd "${SQLITE_AUTOCONF_ROOT}"
# add rpath
sed -i "s|^Libs:|Libs: -Wl,--enable-new-dtags,-rpath=\${libdir} |g" sqlite3.pc.in
DESTDIR=/manylinux-rootfs do_standard_install --prefix=${PREFIX}
DESTDIR=/manylinux-rootfs do_standard_install --prefix=${PREFIX} --enable-all
popd
rm -rf "${SQLITE_AUTOCONF_ROOT}" "${SQLITE_AUTOCONF_ROOT}.tar.gz"

Expand Down
5 changes: 5 additions & 0 deletions docker/tests/modules-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ def test_sqlite3(self):
print(f"{sqlite3.sqlite_version=}", end=" ", flush=True)
assert sqlite3.sqlite_version_info[0:2] >= (3, 50)

# When the extension is not installed, it raises:
# sqlite3.OperationalError: no such module: fts5
conn = sqlite3.connect(":memory:")
conn.execute("create virtual table fts5test using fts5 (data);")

def test_tkinter(self):
# Make sure tkinter module can be loaded properly
import tkinter as tk
Expand Down