Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
af06e83
feat: Add initial tool spec for conda
mattkram Apr 15, 2026
e2e6c64
feat: Add conda wrapper
mattkram Apr 16, 2026
1f17c81
fix: Use rm -rf for faster temp environment cleanup
mattkram Apr 16, 2026
492b136
feat: Ensure we write the frozen marker
mattkram Apr 16, 2026
9825a2e
feat: Add default .condarc to include in tool environment
mattkram Apr 16, 2026
36475a8
fix: Set CONDA_ROOT_PREFIX environment variable
mattkram Apr 16, 2026
4169c84
feat: Add "conda shell" alias to the wrapper binary
mattkram Apr 16, 2026
9401e51
docs: Add some generated documentation about the conda integration
mattkram Apr 16, 2026
1b4aa9c
fix: Make Unix import conditional for Windows compatibility
mattkram Apr 16, 2026
951b74b
fix: Handle Windows binary naming in test fixtures
mattkram Apr 16, 2026
221b1ea
fix: Add .exe extension to wrapper symlink on Windows
mattkram Apr 16, 2026
36b9238
fix: Expand shim approach to `conda` wrapper (#205)
marcoesters May 11, 2026
0d7d7d3
chore: Fix clippy warnings after rebase
mattkram Jun 2, 2026
7530037
docs: Add summary documentation about design findings of PR
mattkram Jun 3, 2026
f642e2b
feat: Add experimental warning for conda tool installation
mattkram Jun 3, 2026
99c7a3b
feat: Show feedback hint when conda commands fail
mattkram Jun 3, 2026
ad3b63c
chore: Remove Python <3.14 upper bound from conda tool spec
mattkram Jun 3, 2026
9686c51
docs: Add note about wrapper architecture tradeoffs
mattkram Jun 3, 2026
ebd679b
refac: Use standalone conda wrapper binary instead of symlink to ana
mattkram Jun 3, 2026
3737c40
docs: Fix CEP references in conda design doc
mattkram Jun 3, 2026
31c8257
chore: Move experimental and UX sections towards top
mattkram Jun 3, 2026
0fcf99b
docs: Update findings and next steps for conda-express collaboration
mattkram Jun 3, 2026
d305bc9
docs: Consolidate conda docs into single design document
mattkram Jun 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ unstable = []
[dependencies]
anaconda-anon-usage = { version = "0.8.0-pre.9", features = ["rattler", "reqwest"] }
async-trait = "0.1"
atty = "0.2"
base64 = "0.22"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
futures-util = "0.3"
Expand Down
Loading
Loading