We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd1f17f commit faa6762Copy full SHA for faa6762
1 file changed
.github/matrix.py
@@ -248,9 +248,9 @@ def main(ref_name):
248
249
openssl_supports_quic = False
250
try:
251
- openssl_supports_quic = version(ssl.split("OPENSSL_VERSION=",1)[1]) > version("3.5.0")
+ openssl_supports_quic = Version(ssl.split("OPENSSL_VERSION=",1)[1]) > Version("3.5.0")
252
except:
253
- print("An exception occurred")
+ pass
254
255
if openssl_supports_quic:
256
flags.append("USE_QUIC=1")
0 commit comments