diff --git a/src/apsw.c b/src/apsw.c index 36e650ba..7f0ac617 100644 --- a/src/apsw.c +++ b/src/apsw.c @@ -59,8 +59,8 @@ API Reference #include "sqlite3.h" #endif -#if SQLITE_VERSION_NUMBER < 3025000 -#error Your SQLite version is too old. It must be at least 3.25 +#if SQLITE_VERSION_NUMBER < 3026000 +#error Your SQLite version is too old. It must be at least 3.26 #endif /* system headers */ diff --git a/tools/megatest.py b/tools/megatest.py index dc7b6d0d..9b8a1dbe 100755 --- a/tools/megatest.py +++ b/tools/megatest.py @@ -201,9 +201,7 @@ def patch_natty_build(setup): ) SQLITEVERS=( - '3.25.0', - '3.25.1', - '3.25.2', + '3.26.0', ) if __name__=='__main__':