Skip to content

Commit 5cd4880

Browse files
committed
downloads: OpenSSL 3.0.12 -> 3.0.13
1 parent cf9c3cd commit 5cd4880

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.12.tar.gz",
242-
"size": 15204575,
243-
"sha256": "f93c9e8edde5e9166119de31755fc87b4aa34863662f67ddfcba14d0b6b69b61",
244-
"version": "3.0.12",
241+
"url": "https://www.openssl.org/source/openssl-3.0.13.tar.gz",
242+
"size": 15294843,
243+
"sha256": "88525753f79d3bec27d2fa7c66aa0b92b3aa9498dafd93d7cfa4b3780cdae313",
244+
"version": "3.0.13",
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
@@ -129,7 +129,7 @@ def test_ssl(self):
129129
if os.name == "nt" and sys.version_info[0:2] < (3, 11):
130130
wanted_version = (1, 1, 1, 23, 15)
131131
else:
132-
wanted_version = (3, 0, 0, 12, 0)
132+
wanted_version = (3, 0, 0, 13, 0)
133133

134134
self.assertEqual(ssl.OPENSSL_VERSION_INFO, wanted_version)
135135

0 commit comments

Comments
 (0)