Skip to content

Commit

Permalink
Fixed pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
olszomal committed Nov 5, 2024
1 parent 75850f8 commit 92cdec1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
run: |
source venv/bin/activate
python -m pip install --upgrade pip
python -m pip install --no-binary :all: cryptography
python -m pip install --upgrade cryptography
python -c "import sys; print(sys.executable)"
python --version
python -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')"
Expand All @@ -151,7 +151,7 @@ jobs:
run: |
source venv/bin/activate
python -m pip install --upgrade pip
ARCHFLAGS="-arch arm64" python -m pip install --no-binary :all: cryptography
ARCHFLAGS="-arch arm64" python -m pip install --upgrade cryptography
python -c "import sys; print(sys.executable)"
python --version
python -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')"
Expand Down

0 comments on commit 92cdec1

Please sign in to comment.