[stable-2.10] incidental_setup_openssl - Pin version of Python packages
A recent update to cffi that was yanked is still being installed on our
Mac OS X 10.11 test image since the version of pip there is very old and
does not ignore yanked packages.
Pin the version of pyOpenSSL and its dependencies to fix this and avoid
future spontaneous failures.
(cherry picked from commit 65cdb86c8a
)
Co-authored-by: Sam Doran <sdoran@redhat.com>
This commit is contained in:
parent
2b9e5b931a
commit
b6637c0afc
1 changed files with 9 additions and 1 deletions
|
@ -24,7 +24,15 @@
|
||||||
- name: Install pyOpenSSL (Darwin)
|
- name: Install pyOpenSSL (Darwin)
|
||||||
become: True
|
become: True
|
||||||
pip:
|
pip:
|
||||||
name: pyOpenSSL
|
name:
|
||||||
|
- pyOpenSSL==19.1.0
|
||||||
|
# dependencies for pyOpenSSL
|
||||||
|
- cffi==1.14.2
|
||||||
|
- cryptography==3.1
|
||||||
|
- enum34==1.1.10
|
||||||
|
- ipaddress==1.0.23
|
||||||
|
- pycparser==2.20
|
||||||
|
- six==1.15.0
|
||||||
when: ansible_os_family == 'Darwin'
|
when: ansible_os_family == 'Darwin'
|
||||||
|
|
||||||
- name: register pyOpenSSL version
|
- name: register pyOpenSSL version
|
||||||
|
|
Loading…
Reference in a new issue