Skip to content

Commit 75cfbab

Browse files
committed
downloads: SQLite 3.44.2 -> 3.45.0
1 parent 89bf1e9 commit 75cfbab

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/2023/sqlite-autoconf-3440200.tar.gz",
285-
"size": 3204841,
286-
"sha256": "1c6719a148bc41cf0f2bbbe3926d7ce3f5ca09d878f1246fcc20767b175bb407",
287-
"version": "3440200",
288-
"actual_version": "3.44.2.0",
284+
"url": "https://www.sqlite.org/2024/sqlite-autoconf-3450000.tar.gz",
285+
"size": 3231697,
286+
"sha256": "72887d57a1d8f89f52be38ef84a6353ce8c3ed55ada7864eb944abd9a495e436",
287+
"version": "3450000",
288+
"actual_version": "3.45.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
@@ -107,7 +107,7 @@ def test_hashlib(self):
107107
def test_sqlite(self):
108108
import sqlite3
109109

110-
self.assertEqual(sqlite3.sqlite_version_info, (3, 44, 2))
110+
self.assertEqual(sqlite3.sqlite_version_info, (3, 45, 0))
111111

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

0 commit comments

Comments
 (0)