diff --git a/doc/about.rst b/doc/about.rst
index e902a6ae..179e01b1 100644
--- a/doc/about.rst
+++ b/doc/about.rst
@@ -3,7 +3,7 @@ About
**APSW** |version| **released** |today|
-Use with `SQLite `__ 3.47 or later, `Python
+Use with `SQLite `__ 3.47.1 or later, `Python
`__ 3.9 and later.
diff --git a/src/apsw.c b/src/apsw.c
index f752adf5..da78abe7 100644
--- a/src/apsw.c
+++ b/src/apsw.c
@@ -95,8 +95,8 @@ API Reference
#include "sqlite3.h"
#endif
-#if SQLITE_VERSION_NUMBER < 3047000
-#error Your SQLite version is too old. It must be at least 3.47
+#if SQLITE_VERSION_NUMBER < 3047001
+#error Your SQLite version is too old. It must be at least 3.47.1
#endif
/* system headers */
diff --git a/tools/megatest.py b/tools/megatest.py
index d2bb2404..28bd9e8c 100755
--- a/tools/megatest.py
+++ b/tools/megatest.py
@@ -253,7 +253,7 @@ def cmp(a, b):
"system",
)
-SQLITEVERS = ("3.47.0",)
+SQLITEVERS = ("3.47.1",)
BITS = (64, 32)