Skip to content

Commit

Permalink
3.47.1 is minimum due to new constant
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerbinns committed Nov 25, 2024
1 parent f786128 commit 5515cbd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ About

**APSW** |version| **released** |today|

Use with `SQLite <https://sqlite.org/>`__ 3.47 or later, `Python
Use with `SQLite <https://sqlite.org/>`__ 3.47.1 or later, `Python
<https://www.python.org/downloads/>`__ 3.9 and later.


Expand Down
4 changes: 2 additions & 2 deletions src/apsw.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
2 changes: 1 addition & 1 deletion tools/megatest.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def cmp(a, b):
"system",
)

SQLITEVERS = ("3.47.0",)
SQLITEVERS = ("3.47.1",)

BITS = (64, 32)

Expand Down

0 comments on commit 5515cbd

Please sign in to comment.