Skip to content

Commit 9e9fcef

Browse files
committed
downloads: OpenSSL 3.0.13 -> 3.0.14
1 parent 564854b commit 9e9fcef

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
@@ -238,10 +238,10 @@
238238
# using the latest available.
239239
# Remember to update OPENSSL_VERSION_INFO in verify_distribution.py whenever upgrading.
240240
"openssl-3.0": {
241-
"url": "https://www.openssl.org/source/openssl-3.0.13.tar.gz",
242-
"size": 15294843,
243-
"sha256": "88525753f79d3bec27d2fa7c66aa0b92b3aa9498dafd93d7cfa4b3780cdae313",
244-
"version": "3.0.13",
241+
"url": "https://www.openssl.org/source/openssl-3.0.14.tar.gz",
242+
"size": 15305497,
243+
"sha256": "eeca035d4dd4e84fc25846d952da6297484afa0650a6f84c682e39df3a4123ca",
244+
"version": "3.0.14",
245245
"library_names": ["crypto", "ssl"],
246246
"licenses": ["Apache-2.0"],
247247
"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, 13, 0)
138+
wanted_version = (3, 0, 0, 14, 0)
139139

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

0 commit comments

Comments
 (0)