Skip to content

Commit 130261d

Browse files
authored
Fix pyOpenSSL version in pth docker image
1 parent 1bb3e75 commit 130261d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/gpu-hvd-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ jobs:
113113
pip install -r requirements-dev.txt
114114
pip install -e .
115115
116+
# Upgrade pyOpenSSL to avoid issue:
117+
# AttributeError: module 'lib' has no attribute 'X509_V_FLAG_NOTIFY_POLICY'. Did you mean: 'X509_V_FLAG_EXPLICIT_POLICY'?
118+
pip install -U pyOpenSSL
119+
116120
EOF
117121
)
118122

.github/workflows/gpu-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ jobs:
113113
pip install -r requirements-dev.txt
114114
pip install -e .
115115
116+
# Upgrade pyOpenSSL to avoid issue:
117+
# AttributeError: module 'lib' has no attribute 'X509_V_FLAG_NOTIFY_POLICY'. Did you mean: 'X509_V_FLAG_EXPLICIT_POLICY'?
118+
pip install -U pyOpenSSL
119+
116120
EOF
117121
)
118122

0 commit comments

Comments
 (0)