Skip to content

Commit

Permalink
Upgrade SQLite from 3.46.1 -> 3.47.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Dec 4, 2024
1 parent 03059db commit a0855f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 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",
"url": "https://www.sqlite.org/2024/sqlite-autoconf-3470100.tar.gz",
"size": 3265571,
"sha256": "67d3fe6d268e6eaddcae3727fce58fcc8e9c53869bdd07a0c61e38ddf2965071",
"version": "3460100",
"actual_version": "3.46.1.0",
"sha256": "416a6f45bf2cacd494b208fdee1beda509abda951d5f47bc4f2792126f01b452",
"version": "3328564",
"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

0 comments on commit a0855f6

Please sign in to comment.