uv/crates/uv-virtualenv
2025-10-09 15:18:38 +02:00
..
src Replace fs_err alias (#16201) 2025-10-09 15:18:38 +02:00
Cargo.toml Move preview features into a dedicated crate (#15482) 2025-08-24 09:55:30 -04:00
README.md fix: refresh activation scripts from upstream virtualenv (#15272) 2025-09-05 16:12:37 -05:00

uv-virtualenv

uv-virtualenv is a rust library to create Python virtual environments. It also has a CLI.

Syncing with upstream virtualenv activation scripts

This crate tries to stay in sync with pypa/virtualenv project's activation scrips. However, there are some deviations that are specific to this crate's implementation.

License disclaimers added

This crate includes license information at the top of each activation script. This is done in accordance with the pypa/virtualenv project's MIT License. Do not remove the declarative license comments from this crate's activation scripts.

Placeholder names are slightly different

Note, these activation scripts are actually templates that are populated with certain values when a virtual environment is created.

In upstream, the placeholder names are found in virtualenv.activation.ViaTemplateActivator.replacements().

In this crate, the placeholder names are found in uv_virtualenv::virtualenv::create()

It is important that the placeholder names (as used in the activation scripts) conform to the placeholders names used in this crate's source.

Relocatable virtual environments

This crate uses some additional tweaks in the activation scripts to ensure the virtual environment is relocatable. Thus, the patch in astral-sh/uv#5640 shall be retained.

TCL/TK library locations

The patches in upstream virtualenv (pypa/virtualenv#2928 and pypa/virtualenv#2940) implement dynamically locating the TCL/TK libraries of a base Python distribution (see upstream approach).

This upstream implementation is considered an undesirable complexity in this project. As such, the upstream TCL/TK related patches shall be omitted when syncing activation scripts with upstream sources.