Skip to content

Commit

Permalink
revert the debug change
Browse files Browse the repository at this point in the history
  • Loading branch information
ChannyClaus committed Mar 30, 2024
1 parent efcd2be commit b3e893e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

- name: "Cargo test"
run: |
cargo nextest run --workspace --status-level skip --failure-output immediate-final --no-fail-fast -j 12 --final-status-level slow -- install_numpy_py38
cargo nextest run --workspace --status-level skip --failure-output immediate-final --no-fail-fast -j 12 --final-status-level slow
- name: "Smoke test (unix)"
if: ${{ matrix.os != 'windows' }}
Expand Down
1 change: 0 additions & 1 deletion crates/uv-interpreter/src/python_environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ impl PythonEnvironment {
// de-duplicate while preserving order
let mut dedup_set = HashSet::new();
site_packages.retain(|path| dedup_set.insert(fs::canonicalize(path).unwrap()));
println!("site_packages: {:?}", site_packages);
site_packages.into_iter()
}

Expand Down

0 comments on commit b3e893e

Please sign in to comment.