prefix-dev / rip

Solve and install Python packages quickly with rip (pip in Rust)
https://prefix.dev
BSD 3-Clause "New" or "Revised" License
643 stars 21 forks source link

fix: actually skip 404s #204

Closed Kelwing closed 7 months ago

Kelwing commented 7 months ago

The current method of skipping 404s when making calls to the simple API does not work, as the 404 is actually returned as a Result::Err, so the check is never reached. This PR corrects the logic so 404's are actually skipped.