From 7e9172a71bf60ed1052e5776ce2c88c6336f0768 Mon Sep 17 00:00:00 2001 From: omesser Date: Sat, 13 Jul 2024 18:30:26 +0300 Subject: [PATCH] reverting install change. will issue another PR to have CI run on matrix of python versions --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index d3f208c..93a9e10 100755 --- a/install +++ b/install @@ -53,7 +53,7 @@ def main(): # (from a local dir if it exists) # "python -m pip install" instead of "pip install" handles a pip # issue where it fails in a long-named dir - run('virtualenv --python=python3.7 venv && ' + run('virtualenv --python=python3 venv && ' 'source venv/bin/activate && ' 'python -m pip install {0} incremental && '.format(local_pip_packages) + 'python -m pip install {0} -r {1}'.format(local_pip_packages, requirements_file))