Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pythonbuild/downloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,11 +284,11 @@
},
# Remember to update verify_distribution.py when version changed.
"sqlite": {
"url": "https://www.sqlite.org/2024/sqlite-autoconf-3460100.tar.gz",
"size": 3265571,
"sha256": "67d3fe6d268e6eaddcae3727fce58fcc8e9c53869bdd07a0c61e38ddf2965071",
"version": "3460100",
"actual_version": "3.46.1.0",
"url": "https://www.sqlite.org/2024/sqlite-autoconf-3470100.tar.gz",
"size": 3328564,
"sha256": "416a6f45bf2cacd494b208fdee1beda509abda951d5f47bc4f2792126f01b452",
"version": "3470100",
"actual_version": "3.47.1.0",
"library_names": ["sqlite3"],
"licenses": [],
"license_file": "LICENSE.sqlite.txt",
Expand Down
2 changes: 1 addition & 1 deletion src/verify_distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def test_hashlib(self):
def test_sqlite(self):
import sqlite3

self.assertEqual(sqlite3.sqlite_version_info, (3, 46, 1))
self.assertEqual(sqlite3.sqlite_version_info, (3, 47, 1))

# Optional SQLite3 features are enabled.
conn = sqlite3.connect(":memory:")
Expand Down
Loading