emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/emacsql 2550196816 162/427: Drop SQLite version requiremen


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql 2550196816 162/427: Drop SQLite version requirements.
Date: Tue, 13 Dec 2022 02:59:38 -0500 (EST)

branch: elpa/emacsql
commit 2550196816532cbe09a05f7b4023d69e2e073ce6
Author: Christopher Wellons <wellons@nullprogram.com>
Commit: Christopher Wellons <wellons@nullprogram.com>

    Drop SQLite version requirements.
---
 README.md  | 2 +-
 emacsql.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index d1998e8d6c..98027174c5 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ closures. Emacsql has no concept of "TEXT" values; it's all 
just lisp
 objects. The lisp object `nil` corresponds 1:1 with `NULL` in the
 database.
 
-Requires Emacs 24 or later and SQLite 3.7.15 or later.
+Requires Emacs 24 or later and SQLite 3 or later.
 
 Due to [bad behavior from SQLite on Windows][stderr] Emacsql will
 *not* signal error messages for invalid statements on this platform.
diff --git a/emacsql.el b/emacsql.el
index f89546ee36..52b7ea87a6 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -74,7 +74,7 @@
           (with-temp-buffer
             (call-process sqlite3 nil (current-buffer) nil "--version")
             (let ((version (car (split-string (buffer-string)))))
-              (if (version< version "3.7.15")
+              (if (version< version "3.0.0")
                   :old-version
                 nil)))
         (error :cannot-execute)))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]