We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eeccc7 commit 7a5d265Copy full SHA for 7a5d265
crates/uv-virtualenv/src/virtualenv.rs
@@ -242,6 +242,16 @@ pub(crate) fn create(
242
interpreter.python_minor(),
243
)),
244
)?;
245
+ if interpreter.gil_disabled() {
246
+ uv_fs::replace_symlink(
247
+ "python",
248
+ scripts.join(format!(
249
+ "python{}.{}t",
250
+ interpreter.python_major(),
251
+ interpreter.python_minor(),
252
+ )),
253
+ )?;
254
+ }
255
256
if interpreter.markers().implementation_name() == "pypy" {
257
uv_fs::replace_symlink(
0 commit comments