Skip to content

Commit 2392602

Browse files
authored
Upgrade OpenSSL from 3.0.14 -> 3.0.15 (#350)
1 parent 14821db commit 2392602

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
@@ -250,10 +250,10 @@
250250
# using the latest available.
251251
# Remember to update OPENSSL_VERSION_INFO in verify_distribution.py whenever upgrading.
252252
"openssl-3.0": {
253-
"url": "https://www.openssl.org/source/openssl-3.0.14.tar.gz",
254-
"size": 15305497,
255-
"sha256": "eeca035d4dd4e84fc25846d952da6297484afa0650a6f84c682e39df3a4123ca",
256-
"version": "3.0.14",
253+
"url": "https://www.openssl.org/source/openssl-3.0.15.tar.gz",
254+
"size": 15318633,
255+
"sha256": "23c666d0edf20f14249b3d8f0368acaee9ab585b09e1de82107c66e1f3ec9533",
256+
"version": "3.0.15",
257257
"library_names": ["crypto", "ssl"],
258258
"licenses": ["Apache-2.0"],
259259
"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, 14, 0)
138+
wanted_version = (3, 0, 0, 15, 0)
139139

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

0 commit comments

Comments
 (0)