Skip to content

Commit d03ec63

Browse files
authored
Upgrade OpenSSL from 3.0.15 to 3.0.16 (#523)
1 parent 469b3c5 commit d03ec63

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pythonbuild/downloads.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,10 @@
249249
# using the latest available.
250250
# Remember to update OPENSSL_VERSION_INFO in verify_distribution.py whenever upgrading.
251251
"openssl-3.0": {
252-
"url": "https://www.openssl.org/source/openssl-3.0.15.tar.gz",
253-
"size": 15318633,
254-
"sha256": "23c666d0edf20f14249b3d8f0368acaee9ab585b09e1de82107c66e1f3ec9533",
255-
"version": "3.0.15",
252+
"url": "https://www.openssl.org/source/openssl-3.0.16.tar.gz",
253+
"size": 15334967,
254+
"sha256": "57e03c50feab5d31b152af2b764f10379aecd8ee92f16c985983ce4a99f7ef86",
255+
"version": "3.0.16",
256256
"library_names": ["crypto", "ssl"],
257257
"licenses": ["Apache-2.0"],
258258
"license_file": "LICENSE.openssl-3.txt",

src/verify_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def test_ssl(self):
135135
if os.name == "nt" and sys.version_info[0:2] < (3, 11):
136136
wanted_version = (1, 1, 1, 23, 15)
137137
else:
138-
wanted_version = (3, 0, 0, 15, 0)
138+
wanted_version = (3, 0, 0, 16, 0)
139139

140140
self.assertEqual(ssl.OPENSSL_VERSION_INFO, wanted_version)
141141

0 commit comments

Comments
 (0)