Skip to content

Commit

Permalink
Work around the backward incompatible Python removal of deprecated `s…
Browse files Browse the repository at this point in the history
…sl.wrap_socket()` function which breaks PyKMIP (as there is no newer version of PyKMIP to upgrade to which would follow the change in Python). (#1155)
  • Loading branch information
ximon18 authored Nov 15, 2023
1 parent eafb258 commit 418bae7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.x'
# Pin to Python 3.11 because 3.12 removes the ssl.wrap_socket()
# function which PyKMIP uses.
python-version: '3.11'

- name: Install PyKMIP
uses: BSFishy/pip-action@v1
Expand Down

0 comments on commit 418bae7

Please sign in to comment.