Skip to content

Commit 1815969

Browse files
committed
fix(venv): upgrade pip to last version after venv creation
The project is installed as editable in a virtual environment with pip. Editable installation is supported by pip since 21.3.0.
1 parent d5f7099 commit 1815969

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

incipyt/tools/venv.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ def pre(self, workon):
2121
commands.setenv_python_cmd(
2222
env_path.resolve() / ("Scripts" if os.name == "nt" else "bin") / "python"
2323
)
24+
commands.pip_install(["pip>=21.3.0"])

0 commit comments

Comments
 (0)