]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-144551: Update CI to use latest OpenSSL versions (GH-144800)
authorZachary Ware <zach@python.org>
Fri, 13 Feb 2026 21:41:42 +0000 (15:41 -0600)
committerGitHub <noreply@github.com>
Fri, 13 Feb 2026 21:41:42 +0000 (15:41 -0600)
(cherry picked from commit b933ef92619db2a103a26c70e69b6d31978eb566)

.github/workflows/build.yml
Tools/ssl/multissltests.py

index a11e788c3349bd4b093218cc3acfdf214a0b0d82..9a8bae20929d6716e29d1fde3afedceae9ef87ec 100644 (file)
@@ -293,7 +293,8 @@ jobs:
         # Keep 1.1.1w in our list despite it being upstream EOL and otherwise
         # unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
         # supported by important vendors such as AWS-LC.
-        openssl_ver: [1.1.1w, 3.0.18, 3.1.7, 3.2.6, 3.3.5]
+        openssl_ver: [1.1.1w, 3.0.19, 3.3.6, 3.4.4, 3.5.5, 3.6.1]
+        # See Tools/ssl/make_ssl_data.py for notes on adding a new version
     env:
       OPENSSL_VER: ${{ matrix.openssl_ver }}
       MULTISSL_DIR: ${{ github.workspace }}/multissl
index ef554233e70900c271a5cc33a9bd12c2510710a2..8b0c1e04587589beeb57270e5f65b6b37e67fd0f 100755 (executable)
@@ -44,13 +44,17 @@ log = logging.getLogger("multissl")
 
 OPENSSL_OLD_VERSIONS = [
     "1.1.1w",
+    "3.1.8",
+    "3.2.6",
 ]
 
 OPENSSL_RECENT_VERSIONS = [
-    "3.0.18",
-    "3.1.7",
-    "3.2.6",
-    "3.3.5",
+    "3.0.19",
+    "3.3.6",
+    "3.4.4",
+    "3.5.5",
+    "3.6.1",
+    # See make_ssl_data.py for notes on adding a new version.
 ]
 
 LIBRESSL_OLD_VERSIONS = [