Skip to content

Commit e0e0f6b

Browse files
committed
dev: update venvstarter
1 parent 615fd34 commit e0e0f6b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/bootstrap_venvstarter.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@
1212
del os.environ["PIP_REQUIRE_VIRTUALENV"]
1313
os.system(f"{sys.executable} -m pip install venvstarter -t {deps_dir}")
1414

15+
sys.path.append(str(deps_dir))
1516
venvstarter_module = runpy.run_path(str(deps_dir / "venvstarter.py"))
17+
sys.path.pop()
1618

17-
wanted_version = "0.12.1"
19+
wanted_version = "0.12.2"
1820

1921
upgrade = False
2022
VERSION = venvstarter_module.get("VERSION")

0 commit comments

Comments
 (0)