Skip to content

Commit eaf4660

Browse files
authored
Refactor pip install command in publish2.yml
Split pip install command into multiple lines for readability and added cryptography dependency.
1 parent 5998b2a commit eaf4660

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/publish2.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,11 @@ jobs:
166166
CIBW_BEFORE_BUILD: "pip install packaging>=23.0"
167167
# Pre-seed uv-ffi wheel into the test venv from the GH extra index
168168
# so pip never falls back to building it from the sdist (slow Rust build).
169-
CIBW_BEFORE_TEST: "pip install --extra-index-url https://1minds3t.github.io/uv-ffi/ uv-ffi>=0.10.8.post7"
169+
CIBW_BEFORE_TEST: >-
170+
pip install
171+
--extra-index-url https://1minds3t.github.io/uv-ffi/
172+
uv-ffi>=0.10.8.post7
173+
cryptography>=46.0.7
170174
CIBW_BUILD: "${{ matrix.py_tag }}-*"
171175
CIBW_ARCHS: "${{ matrix.cibw_archs }}"
172176
CIBW_SKIP: "pp*"

0 commit comments

Comments
 (0)