Skip to content

Commit cf9c3cd

Browse files
committed
downloads: SQLite 3.45.0 -> 3.45.1
1 parent 500c8f4 commit cf9c3cd

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-3450000.tar.gz",
285-
"size": 3231697,
286-
"sha256": "72887d57a1d8f89f52be38ef84a6353ce8c3ed55ada7864eb944abd9a495e436",
287-
"version": "3450000",
288-
"actual_version": "3.45.0.0",
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",
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, 45, 0))
110+
self.assertEqual(sqlite3.sqlite_version_info, (3, 45, 1))
111111

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

0 commit comments

Comments
 (0)