1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix CI (problem with cffi) (#892)

* Work around old pip versions which install yanked packages.

* Try II

* Proper approach.

* Avoid too old version being installed.
This commit is contained in:
Felix Fontein 2020-09-16 10:44:31 +02:00 committed by GitHub
parent 905239f530
commit 38996b7544
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 0 deletions

View file

@ -1,2 +1,3 @@
dependencies:
- setup_remote_constraints
- setup_pkg_mgr

View file

@ -1,2 +1,3 @@
dependencies:
- setup_remote_constraints
- setup_pkg_mgr

View file

@ -25,6 +25,7 @@
become: True
pip:
name: pyOpenSSL
extra_args: "-c {{ remote_constraints }}"
when: ansible_os_family == 'Darwin'
- name: register pyOpenSSL version

View file

@ -40,6 +40,7 @@ boto3 < 1.11 ; python_version < '2.7' # boto3 1.11 drops Python 2.6 support
botocore >= 1.10.0, < 1.14 ; python_version < '2.7' # adds support for the following AWS services: secretsmanager, fms, and acm-pca; botocore 1.14 drops Python 2.6 support
botocore >= 1.10.0 ; python_version >= '2.7' # adds support for the following AWS services: secretsmanager, fms, and acm-pca
setuptools < 45 ; python_version <= '2.7' # setuptools 45 and later require python 3.5 or later
cffi >= 1.14.2, != 1.14.3 # Yanked version which older versions of pip will still install:
# freeze pylint and its requirements for consistent test results
astroid == 2.2.5