Skip to content

Commit 97c70e0

Browse files
committed
docs: fix install instructions — replace -f with --extra-index-url for exotic-wheels index
-f flag requires full https:// scheme and per-package subpath to work reliably; --extra-index-url https://exotic-wheels.github.io/ is correct for all platforms Modified: • crates/uv-ffi/build.rs (+1/-2 lines) • README.md (+1/-1 lines) • crates/uv-ffi/README.md (+6/-0 lines) [gitship-generated]
1 parent ba74ae0 commit 97c70e0

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Standard platforms (PyPI)
99
pip install uv-ffi
1010

11-
# Exotic platforms — musl Alpine, armv7, riscv64, s390x, free-threaded, PyPy, GraalPy
11+
# Exotic platforms — musl Alpine, armv7, riscv64, s390x, free-threaded, PyPy, GraalPy, cp37
1212
pip install uv-ffi --extra-index-url https://exotic-wheels.github.io/
1313
```
1414
**[Browse all wheels](https://exotic-wheels.github.io/)** — PyPI wheels + 600+ additional wheels hosted on GitHub Releases

crates/uv-ffi/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ pip install uv-ffi --extra-index-url https://exotic-wheels.github.io/
3030
pip install uv-ffi --no-binary uv-ffi
3131

3232
```
33+
### Build from source for cp37
34+
```bash
35+
pip install uv-ffi --config-settings \"cargo-extra-args=--no-default-features\"
36+
```
37+
38+
3339
If the Rust build fails, pre-built wheels for your platform are almost certainly available via the extra-index-url above.
3440

3541
---

crates/uv-ffi/build.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ fn main() {
77
println!("cargo:warning=║ Extended : musllinux, armv7/i686/ppc64le/s390x ║");
88
println!("cargo:warning=║ riscv64, PyPy, GraalPy, 3.13t, cp37 ║");
99
println!("cargo:warning=╚═══════════════════════════════════════════════════════════════╝");
10-
println!("cargo:warning= pip install uv-ffi -f https://exotic-wheels.github.io/ # extended + cp37");
11-
println!("cargo:warning= pip install uv-ffi --config-settings \"cargo-extra-args=--no-default-features\" # for cp37 from source");
10+
println!("cargo:warning= pip install uv-ffi --extra-index-url https://exotic-wheels.github.io/ # extended");
1211
}

0 commit comments

Comments
 (0)