Skip to content

Commit bcf0943

Browse files
authored
Update SQLite to 3.50.4 (#786)
Fixes #784.
1 parent 1b4757c commit bcf0943

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pythonbuild/downloads.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -295,11 +295,11 @@
295295
},
296296
# Remember to update verify_distribution.py when version changed.
297297
"sqlite": {
298-
"url": "https://www.sqlite.org/2025/sqlite-autoconf-3490100.tar.gz",
299-
"size": 3226385,
300-
"sha256": "106642d8ccb36c5f7323b64e4152e9b719f7c0215acf5bfeac3d5e7f97b59254",
301-
"version": "3490100",
302-
"actual_version": "3.49.1.0",
298+
"url": "https://www.sqlite.org/2025/sqlite-autoconf-3500400.tar.gz",
299+
"size": 3173050,
300+
"sha256": "a3db587a1b92ee5ddac2f66b3edb41b26f9c867275782d46c3a088977d6a5b18",
301+
"version": "3500400",
302+
"actual_version": "3.50.4.0",
303303
"library_names": ["sqlite3"],
304304
"licenses": [],
305305
"license_file": "LICENSE.sqlite.txt",

src/verify_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def test_hashlib(self):
114114
def test_sqlite(self):
115115
import sqlite3
116116

117-
self.assertEqual(sqlite3.sqlite_version_info, (3, 49, 1))
117+
self.assertEqual(sqlite3.sqlite_version_info, (3, 50, 4))
118118

119119
# Optional SQLite3 features are enabled.
120120
conn = sqlite3.connect(":memory:")

0 commit comments

Comments
 (0)