From 45126b96ebb8a102e6f296313bf161159ba6ae9a Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Mon, 28 Aug 2023 01:19:29 +0530 Subject: [PATCH] fix: workaround for `PIP_REQUIRE_VIRTUALENV` env variable (#294) --- py-rattler/pixi.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-rattler/pixi.toml b/py-rattler/pixi.toml index 79a16be7e..c96a59938 100644 --- a/py-rattler/pixi.toml +++ b/py-rattler/pixi.toml @@ -7,7 +7,7 @@ channels = ["conda-forge"] platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"] [tasks] -build = "maturin develop" +build = "PIP_REQUIRE_VIRTUALENV=false maturin develop" test = { cmd = "pytest --doctest-modules", depends_on = ["build"] } fmt-python = "black ." fmt-rust = "cargo fmt --all"