[Python-checkins] (no subject)

Stéphane Wirtel webhook-mailer at python.org
Wed Sep 11 12:45:56 EDT 2019




To: python-checkins at python.org
Subject: bpo-38117: Test with OpenSSL 1.1.1d (GH-15983)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/58ab13479d854491ac9207bacfae25e8b18b=
044a
commit: 58ab13479d854491ac9207bacfae25e8b18b044a
branch: master
author: Christian Heimes <christian at python.org>
committer: St=C3=A9phane Wirtel <stephane at wirtel.be>
date: 2019-09-11T18:45:52+02:00
summary:

bpo-38117: Test with OpenSSL 1.1.1d (GH-15983)

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

files:
A Misc/NEWS.d/next/Tests/2019-09-11-17-22-32.bpo-38117.X7LgGY.rst
M .azure-pipelines/ci.yml
M .azure-pipelines/pr.yml
M .travis.yml
M Tools/ssl/multissltests.py

diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml
index 12ff7d4c55c9..fe10e45b6792 100644
--- a/.azure-pipelines/ci.yml
+++ b/.azure-pipelines/ci.yml
@@ -59,7 +59,7 @@ jobs:
   variables:
     testRunTitle: '$(build.sourceBranchName)-linux'
     testRunPlatform: linux
-    openssl_version: 1.1.1c
+    openssl_version: 1.1.1d
=20
   steps:
   - template: ./posix-steps.yml
@@ -116,7 +116,7 @@ jobs:
   variables:
     testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
     testRunPlatform: linux-coverage
-    openssl_version: 1.1.1c
+    openssl_version: 1.1.1d
=20
   steps:
   - template: ./posix-steps.yml
diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml
index e3e24ae2a4b0..09209fc0c954 100644
--- a/.azure-pipelines/pr.yml
+++ b/.azure-pipelines/pr.yml
@@ -59,7 +59,7 @@ jobs:
   variables:
     testRunTitle: '$(system.pullRequest.TargetBranch)-linux'
     testRunPlatform: linux
-    openssl_version: 1.1.1c
+    openssl_version: 1.1.1d
=20
   steps:
   - template: ./posix-steps.yml
@@ -116,7 +116,7 @@ jobs:
   variables:
     testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
     testRunPlatform: linux-coverage
-    openssl_version: 1.1.1c
+    openssl_version: 1.1.1d
=20
   steps:
   - template: ./posix-steps.yml
diff --git a/.travis.yml b/.travis.yml
index 98b33393f52c..d4275fde6424 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,7 +11,7 @@ cache:
=20
 env:
   global:
-    - OPENSSL=3D1.1.1c
+    - OPENSSL=3D1.1.1d
     - OPENSSL_DIR=3D"$HOME/multissl/openssl/${OPENSSL}"
     - PATH=3D"${OPENSSL_DIR}/bin:$PATH"
     - CFLAGS=3D"-I${OPENSSL_DIR}/include"
diff --git a/Misc/NEWS.d/next/Tests/2019-09-11-17-22-32.bpo-38117.X7LgGY.rst =
b/Misc/NEWS.d/next/Tests/2019-09-11-17-22-32.bpo-38117.X7LgGY.rst
new file mode 100644
index 000000000000..d3280375516a
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2019-09-11-17-22-32.bpo-38117.X7LgGY.rst
@@ -0,0 +1 @@
+Test with OpenSSL 1.1.1d
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py
index 7fda4df55a67..d816810d5707 100755
--- a/Tools/ssl/multissltests.py
+++ b/Tools/ssl/multissltests.py
@@ -45,17 +45,16 @@
 ]
=20
 OPENSSL_RECENT_VERSIONS =3D [
-    "1.0.2s",
-    "1.1.0k",
-    "1.1.1c",
+    "1.0.2t",
+    "1.1.0l",
+    "1.1.1d",
 ]
=20
 LIBRESSL_OLD_VERSIONS =3D [
-    "2.9.2",
 ]
=20
 LIBRESSL_RECENT_VERSIONS =3D [
-    "2.8.3",
+    "2.9.2",
 ]
=20
 # store files in ../multissl



More information about the Python-checkins mailing list