Skip to content

Commit ec2094e

Browse files
miss-islingtonpicnixz
authored andcommitted
[3.14] pythongh-135261: bring back CI job for testing OpenSSL 1.1.1w (pythonGH-135262) (python#138109)
pythongh-135261: bring back CI job for testing OpenSSL 1.1.1w (pythonGH-135262) This partially reverts commit d83e30c by bringing back the CI job for testing OpenSSL 1.1.1w. Despite this version being upstream EOL, the rationale for keeping it as follows: - It most resembles other 1.1.1-work-a-like ssl APIs supported by important vendors. - Python officially requires OpenSSL 1.1.1 or later, although OpenSSL 3.0 or later is recommended for cryptographic modules. Since changing the build requirements requires a transition period, we need to keep testing the allowed versions. - The code base still contains calls to OpenSSL functions that are deprecated since OpenSSL 3.0 as well as `ifdef` blocks constrained to OpenSSL 1.1.1. (cherry picked from commit 96b7a2e) Co-authored-by: Bénédikt Tran <[email protected]>
1 parent a727ed0 commit ec2094e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,10 @@ jobs:
317317
fail-fast: false
318318
matrix:
319319
os: [ubuntu-24.04]
320-
openssl_ver: [3.0.17, 3.2.5, 3.3.4, 3.4.2, 3.5.2]
320+
# Keep 1.1.1w in our list despite it being upstream EOL and otherwise
321+
# unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
322+
# supported by important vendors such as AWS-LC.
323+
openssl_ver: [1.1.1w, 3.0.17, 3.2.5, 3.3.4, 3.4.2, 3.5.2]
321324
# See Tools/ssl/make_ssl_data.py for notes on adding a new version
322325
env:
323326
OPENSSL_VER: ${{ matrix.openssl_ver }}

0 commit comments

Comments
 (0)