Skip to content

Commit dbcaa25

Browse files
authored
[3.13] gh-139573: Update OpenSSL in CI (GH-139585)
(cherry picked from commit 98e748b)
1 parent 336f9b0 commit dbcaa25

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ jobs:
310310
# Keep 1.1.1w in our list despite it being upstream EOL and otherwise
311311
# unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
312312
# supported by important vendors such as AWS-LC.
313-
openssl_ver: [1.1.1w, 3.0.15, 3.1.7, 3.2.3, 3.3.2]
313+
openssl_ver: [1.1.1w, 3.0.18, 3.1.7, 3.2.6, 3.3.5]
314314
env:
315315
OPENSSL_VER: ${{ matrix.openssl_ver }}
316316
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -399,7 +399,7 @@ jobs:
399399
needs: build-context
400400
if: needs.build-context.outputs.run-tests == 'true'
401401
env:
402-
OPENSSL_VER: 3.0.15
402+
OPENSSL_VER: 3.0.18
403403
PYTHONSTRICTEXTENSIONBUILD: 1
404404
steps:
405405
- uses: actions/checkout@v4
@@ -518,7 +518,7 @@ jobs:
518518
matrix:
519519
os: [ubuntu-24.04]
520520
env:
521-
OPENSSL_VER: 3.0.15
521+
OPENSSL_VER: 3.0.18
522522
PYTHONSTRICTEXTENSIONBUILD: 1
523523
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
524524
steps:

.github/workflows/reusable-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
os: [ubuntu-24.04, ubuntu-24.04-arm]
2727
env:
28-
OPENSSL_VER: 3.0.15
28+
OPENSSL_VER: 3.0.18
2929
PYTHONSTRICTEXTENSIONBUILD: 1
3030
TERM: linux
3131
steps:

Doc/using/configure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Features and minimum versions required to build CPython:
2222

2323
* Support for threads.
2424

25-
* OpenSSL 1.1.1 is the minimum version and OpenSSL 3.0.9 is the recommended
25+
* OpenSSL 1.1.1 is the minimum version and OpenSSL 3.0.18 is the recommended
2626
minimum version for the :mod:`ssl` and :mod:`hashlib` extension modules.
2727

2828
* SQLite 3.15.2 for the :mod:`sqlite3` extension module.

Tools/ssl/multissltests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
]
4848

4949
OPENSSL_RECENT_VERSIONS = [
50-
"3.0.15",
50+
"3.0.18",
5151
"3.1.7",
52-
"3.2.3",
53-
"3.3.2",
52+
"3.2.6",
53+
"3.3.5",
5454
]
5555

5656
LIBRESSL_OLD_VERSIONS = [

0 commit comments

Comments
 (0)