summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-12 12:42:55 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-03-12 12:42:55 +0100
commitc9cb42d3cd4e1243c3cdf32e09c828088b62fce7 (patch)
tree5cf9c5aceacdcb379abfb436514d75f042d6dffd /scripts
parente626e8ee11575c97293776bdd303d1f4bde67b1b (diff)
downloadqutebrowser-c9cb42d3cd4e1243c3cdf32e09c828088b62fce7.tar.gz
qutebrowser-c9cb42d3cd4e1243c3cdf32e09c828088b62fce7.zip
Make recompile_requirements run on Windows
Diffstat (limited to 'scripts')
-rw-r--r--scripts/dev/recompile_requirements.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/dev/recompile_requirements.py b/scripts/dev/recompile_requirements.py
index 1849a5218..f9a94bfe3 100644
--- a/scripts/dev/recompile_requirements.py
+++ b/scripts/dev/recompile_requirements.py
@@ -279,7 +279,7 @@ def run_pip(venv_dir, *args, quiet=False, **kwargs):
arg_str = ' '.join(str(arg) for arg in args)
utils.print_col('venv$ pip {}'.format(arg_str), 'blue')
- venv_python = os.path.join(venv_dir, 'bin', 'python')
+ venv_python = get_venv_python(venv_dir)
return subprocess.run([venv_python, '-m', 'pip'] + args, check=True, **kwargs)
@@ -458,6 +458,12 @@ def get_host_python(name):
return sys.executable
+def get_venv_python(venv_dir):
+ """Get the path to Python inside a virtualenv."""
+ subdir = 'Scripts' if os.name == 'nt' else 'bin'
+ return os.path.join(venv_dir, subdir, 'python')
+
+
def get_outfile(name):
"""Get the path to the output requirements.txt file."""
if name == 'qutebrowser':
@@ -510,7 +516,7 @@ def test_tox():
with tempfile.TemporaryDirectory() as tmpdir:
venv_dir = os.path.join(tmpdir, 'venv')
tox_workdir = os.path.join(tmpdir, 'tox-workdir')
- venv_python = os.path.join(venv_dir, 'bin', 'python')
+ venv_python = get_venv_python(venv_dir)
init_venv(host_python, venv_dir, req_path)
list_proc = subprocess.run([venv_python, '-m', 'tox', '--listenvs'],
check=True,