Skip to content

Commit

Permalink
Manually pre-install wheel so cryptography gets installed from a wheel (
Browse files Browse the repository at this point in the history
  • Loading branch information
blag authored Aug 27, 2022
1 parent 8e93c23 commit 317e1a0
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,19 @@ jobs:
name: verify tag
command: |-
# Install necessary packages and verify that the tag is correct
# gcc package -> gcc (executable)
# g++ package -> cc1plus (executable)
# python3-dev package -> Python.h
# libffi-dev -> ffi.h
# musl-dev package -> limits.h
apk update && apk add python3-dev \
gcc \
libc-dev \
libffi-dev \
musl-dev \
openssl-dev \
cargo
gcc \
g++ \
libffi-dev \
musl-dev
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip setuptools wheel
pip install -r dev-requirements.txt
python3 setup.py verify
- attach_workspace:
Expand Down

0 comments on commit 317e1a0

Please sign in to comment.