[Python-checkins] bpo-38820: Test with OpenSSL 3.0.0-beta1 (GH-26769)

tiran webhook-mailer at python.org
Sat Jun 19 05:08:49 EDT 2021


https://github.com/python/cpython/commit/44fb55149934d8fb095edb6fc3f8167208035b96
commit: 44fb55149934d8fb095edb6fc3f8167208035b96
branch: main
author: Christian Heimes <christian at python.org>
committer: tiran <christian at python.org>
date: 2021-06-19T11:08:41+02:00
summary:

bpo-38820: Test with OpenSSL 3.0.0-beta1 (GH-26769)

Signed-off-by: Christian Heimes <christian at python.org>

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

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 00506bdf1af392..1140c86dfa665d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -179,7 +179,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        openssl_ver: [1.1.1k, 3.0.0-alpha17]
+        openssl_ver: [1.1.1k, 3.0.0-beta1]
     env:
       OPENSSL_VER: ${{ matrix.openssl_ver }}
       MULTISSL_DIR: ${{ github.workspace }}/multissl
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py
index ec7c0661f7595f..25ce2faffacfc3 100755
--- a/Tools/ssl/multissltests.py
+++ b/Tools/ssl/multissltests.py
@@ -48,7 +48,7 @@
 
 OPENSSL_RECENT_VERSIONS = [
     "1.1.1k",
-    "3.0.0-alpha17"
+    "3.0.0-beta1"
 ]
 
 LIBRESSL_OLD_VERSIONS = [



More information about the Python-checkins mailing list