diff --git a/pythonbuild/downloads.py b/pythonbuild/downloads.py index d9d2ebbc..340e8054 100644 --- a/pythonbuild/downloads.py +++ b/pythonbuild/downloads.py @@ -250,10 +250,10 @@ # using the latest available. # Remember to update OPENSSL_VERSION_INFO in verify_distribution.py whenever upgrading. "openssl-3.0": { - "url": "https://www.openssl.org/source/openssl-3.0.14.tar.gz", - "size": 15305497, - "sha256": "eeca035d4dd4e84fc25846d952da6297484afa0650a6f84c682e39df3a4123ca", - "version": "3.0.14", + "url": "https://www.openssl.org/source/openssl-3.0.15.tar.gz", + "size": 15318633, + "sha256": "23c666d0edf20f14249b3d8f0368acaee9ab585b09e1de82107c66e1f3ec9533", + "version": "3.0.15", "library_names": ["crypto", "ssl"], "licenses": ["Apache-2.0"], "license_file": "LICENSE.openssl-3.txt", diff --git a/src/verify_distribution.py b/src/verify_distribution.py index f21b50de..8ee1b2db 100644 --- a/src/verify_distribution.py +++ b/src/verify_distribution.py @@ -135,7 +135,7 @@ def test_ssl(self): if os.name == "nt" and sys.version_info[0:2] < (3, 11): wanted_version = (1, 1, 1, 23, 15) else: - wanted_version = (3, 0, 0, 14, 0) + wanted_version = (3, 0, 0, 15, 0) self.assertEqual(ssl.OPENSSL_VERSION_INFO, wanted_version)