1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 03:32:12 +00:00

Merge pull request #3613 from holta/cryptography-40.0.1-on-32bit

scripts/ansible: Install cryptography 40.0.1 on ALL 32-bit arch's
This commit is contained in:
A Holt 2023-08-05 12:04:08 -04:00 committed by GitHub
commit 119d376c79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -212,7 +212,8 @@ python3 -m venv /usr/local/ansible
#
# 2023-03-24 #3547 similar to #3459 re: cryptography, piwheels, rust.
# Release problems chart: https://www.piwheels.org/project/cryptography/
if [[ $(dpkg --print-architecture) == armhf ]]; then # 32-bit ARM
#if [[ $(dpkg --print-architecture) == armhf ]]; then # 32-bit ARM
if ! dpkg --print-architecture | grep -q 64; then # 32-bit in general!
/usr/local/ansible/bin/python3 -m pip install cryptography==40.0.1
fi