https://github.com/python/cpython/commit/48dd8520258ecee7e2fab9b658bff39c22ba2277
commit: 48dd8520258ecee7e2fab9b658bff39c22ba2277
branch: 3.13
author: Zachary Ware <[email protected]>
committer: zware <[email protected]>
date: 2026-02-13T15:41:42-06:00
summary:

[3.13] gh-144551: Update CI to use latest OpenSSL versions (GH-144800)

(cherry picked from commit b933ef92619db2a103a26c70e69b6d31978eb566)

files:
M .github/workflows/build.yml
M Tools/ssl/multissltests.py

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a11e788c3349bd..9a8bae20929d67 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -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
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py
index ef554233e70900..8b0c1e04587589 100755
--- a/Tools/ssl/multissltests.py
+++ b/Tools/ssl/multissltests.py
@@ -44,13 +44,17 @@
 
 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 = [

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to