summaryrefslogtreecommitdiff
path: root/tools/install_venv.py
diff options
context:
space:
mode:
authorwu.shiming <wushiming@yovole.com>2021-09-18 11:05:49 +0800
committerwu.shiming <wushiming@yovole.com>2021-09-18 11:05:49 +0800
commita84821aebec6a028a01b2858d3a500874056a341 (patch)
tree5d76f7ee63f6bc750565b3955e70bf0cdfabbcb0 /tools/install_venv.py
parent5934219e57cb2b797de12bcfb65090ad2776953d (diff)
downloaddesignate-a84821aebec6a028a01b2858d3a500874056a341.tar.gz
Remove references to sys.version_info
We support Python 3.6 as a minimum now, making these checks no-ops. Change-Id: I824a12f382dde71c145af0c73435aa50dfc20883
Diffstat (limited to 'tools/install_venv.py')
-rw-r--r--tools/install_venv.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 8164e68b..e63213fa 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -59,7 +59,6 @@ def main(argv):
install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,
py_version, project)
options = install.parse_args(argv)
- install.check_python_version()
install.check_dependencies()
install.create_virtualenv(no_site_packages=options.no_site_packages)
install.install_dependencies()