We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e1c676 commit b2ff166Copy full SHA for b2ff166
tools/bootstrap_venvstarter.py
@@ -8,11 +8,15 @@
8
deps_dir.mkdir()
9
10
if not (deps_dir / "venvstarter.py").exists():
11
+ if "PIP_REQUIRE_VIRTUALENV" in os.environ:
12
+ del os.environ["PIP_REQUIRE_VIRTUALENV"]
13
os.system(f"{sys.executable} -m pip install venvstarter -t {deps_dir}")
14
15
+sys.path.append(str(deps_dir))
16
venvstarter_module = runpy.run_path(str(deps_dir / "venvstarter.py"))
17
+sys.path.pop()
18
-wanted_version = "0.12.1"
19
+wanted_version = "0.12.2"
20
21
upgrade = False
22
VERSION = venvstarter_module.get("VERSION")
0 commit comments