Skip to content

Commit 30d8c48

Browse files
committed
downloads: SQLite 3.45.1 -> 3.46.0
1 parent 9e9fcef commit 30d8c48

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
@@ -281,11 +281,11 @@
281281
},
282282
# Remember to update verify_distribution.py when version changed.
283283
"sqlite": {
284-
"url": "https://www.sqlite.org/2024/sqlite-autoconf-3450100.tar.gz",
285-
"size": 3232682,
286-
"sha256": "cd9c27841b7a5932c9897651e20b86c701dd740556989b01ca596fcfa3d49a0a",
287-
"version": "3450100",
288-
"actual_version": "3.45.1.0",
284+
"url": "https://www.sqlite.org/2024/sqlite-autoconf-3460000.tar.gz",
285+
"size": 3265248,
286+
"sha256": "6f8e6a7b335273748816f9b3b62bbdc372a889de8782d7f048c653a447417a7d",
287+
"version": "3460000",
288+
"actual_version": "3.46.0.0",
289289
"library_names": ["sqlite3"],
290290
"licenses": [],
291291
"license_file": "LICENSE.sqlite.txt",

src/verify_distribution.py

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

116-
self.assertEqual(sqlite3.sqlite_version_info, (3, 45, 1))
116+
self.assertEqual(sqlite3.sqlite_version_info, (3, 46, 0))
117117

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

0 commit comments

Comments
 (0)