mirror of
https://github.com/astral-sh/uv
synced 2026-01-22 05:50:25 -05:00
Using a companion change in the middleware (https://github.com/TrueLayer/reqwest-middleware/pull/235, forked&tagged pending review), we can check and show retries for HTTP status core errors, to consistently report retries again. We fix two cases: * Show retries for status code errors for cache client requests * Show retries for status code errors for Python download requests Not handled: * Show previous retries when a distribution download fails mid-streaming * Perform retries when a distribution download fails mid-streaming * Show previous retries when a Python download fails mid-streaming * Perform retries when a Python download fails mid-streaming
46 lines
591 B
Plaintext
46 lines
591 B
Plaintext
# Insta snapshots.
|
|
*.pending-snap
|
|
|
|
# Generated by Cargo
|
|
# will have compiled files and executables
|
|
/vendor/
|
|
debug/
|
|
target-alpine/
|
|
target/
|
|
|
|
# Bootstrapped Python versions
|
|
/bin/
|
|
|
|
# These are backup files generated by rustfmt
|
|
**/*.rs.bk
|
|
|
|
# MSVC Windows builds of rustc generate these, which store debugging information
|
|
*.pdb
|
|
|
|
# Python tmp files
|
|
__pycache__
|
|
|
|
# Maturin builds, and other native editable builds
|
|
*.so
|
|
*.pyd
|
|
*.dll
|
|
/dist
|
|
/crates/uv-build/dist
|
|
|
|
# Profiling
|
|
flamegraph.svg
|
|
perf.data
|
|
perf.data.old
|
|
profile.json
|
|
profile.json.gz
|
|
|
|
# MkDocs
|
|
/site
|
|
|
|
# macOS
|
|
**/.DS_Store
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|