Skip to content

Commit 85e1aa4

Browse files
committed
downloads: upgrade SQLite from 3.37.2.0 to 3.38.0.0
1 parent 1ffead9 commit 85e1aa4

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

pythonbuild/downloads.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -289,12 +289,13 @@
289289
"sha256": "43a5575eea6d3459789316e1596a3d2a0d215260cacf4189508112f35c9a145b",
290290
"version": "60.8.2",
291291
},
292+
# Remember to update verify_distribution.py when version changed.
292293
"sqlite": {
293-
"url": "https://www.sqlite.org/2022/sqlite-autoconf-3370200.tar.gz",
294-
"size": 3001797,
295-
"sha256": "4089a8d9b467537b3f246f217b84cd76e00b1d1a971fe5aca1e30e230e46b2d8",
296-
"version": "3370200",
297-
"actual_version": "3.37.2.0",
294+
"url": "https://www.sqlite.org/2022/sqlite-autoconf-3380000.tar.gz",
295+
"size": 3030934,
296+
"sha256": "1c76e25dc63d9f3935e0f406aec520a33ee77cf54ea5147dffe1fae8369eff68",
297+
"version": "3380000",
298+
"actual_version": "3.38.0.0",
298299
"library_names": ["sqlite3"],
299300
"licenses": [],
300301
"license_file": "LICENSE.sqlite.txt",

src/verify_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def test_hashlib(self):
110110
def test_sqlite(self):
111111
import sqlite3
112112

113-
self.assertEqual(sqlite3.sqlite_version_info, (3, 37, 2))
113+
self.assertEqual(sqlite3.sqlite_version_info, (3, 38, 0))
114114

115115
def test_ssl(self):
116116
import ssl

0 commit comments

Comments
 (0)