Skip to content

Commit 32c3d29

Browse files
authored
Don't force an upgrade of cffi (#7389)
It breaks on pypy where we always want the cffi that came with pypy, not one from pypi.
1 parent b90d481 commit 32c3d29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/wheel-builder.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,8 @@ jobs:
234234
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
235235
shell: bash
236236

237-
- run: python -m pip install -U pip wheel cffi setuptools-rust
237+
- run: python -m pip install -U pip wheel
238+
- run: python -m pip install cffi setuptools-rust
238239
- run: python setup.py sdist
239240
- run: tar zxvf dist/cryptography*.tar.gz && mkdir wheelhouse
240241
shell: bash

0 commit comments

Comments
 (0)