Install Python3 only dev tools with tools/venv3.py (#7215)

These packages can be useful and I found that they aren't being installed in our Python 3 development environment. Let's fix that.
This commit is contained in:
Brad Warren
2019-07-02 13:45:57 -07:00
committed by GitHub
parent 3e872627d8
commit 448d159223
3 changed files with 9 additions and 7 deletions
+4
View File
@@ -25,6 +25,10 @@ def main(pip_args=None):
venv_path = _venv_common.prepare_venv_path('venv')
create_venv(venv_path)
if not pip_args:
pip_args = _venv_common.REQUIREMENTS
_venv_common.install_packages(venv_path, pip_args)