Skip to content

Commit 16f47c6

Browse files
committed
Generate data for OpenSSL 3.4 and add it to multissltests
1 parent 7ebe9aa commit 16f47c6

File tree

4 files changed

+676
-3
lines changed

4 files changed

+676
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ jobs:
250250
fail-fast: false
251251
matrix:
252252
os: [ubuntu-24.04]
253-
openssl_ver: [3.0.15, 3.1.7, 3.2.3, 3.3.2]
253+
openssl_ver: [3.0.15, 3.1.7, 3.2.3, 3.3.2, 3.4.0]
254254
# See Tools/ssl/make_ssl_data.py for notes on adding a new version
255255
env:
256256
OPENSSL_VER: ${{ matrix.openssl_ver }}

Modules/_ssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ static void _PySSLFixErrno(void) {
122122
/* Include generated data (error codes) */
123123
/* See make_ssl_data.h for notes on adding a new version. */
124124
#if (OPENSSL_VERSION_NUMBER >= 0x30100000L)
125-
#include "_ssl_data_31.h"
125+
#include "_ssl_data_34.h"
126126
#elif (OPENSSL_VERSION_NUMBER >= 0x30000000L)
127127
#include "_ssl_data_300.h"
128128
#elif (OPENSSL_VERSION_NUMBER >= 0x10101000L)

0 commit comments

Comments
 (0)