We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 12aa0a6 + d1a140b commit 7d35788Copy full SHA for 7d35788
python-setup/auto_install_packages.py
@@ -76,7 +76,7 @@ def install_packages_with_pipenv(has_lockfile):
76
# In windows the default path were the deps are installed gets wiped out between steps,
77
# so we have to set it up to a folder that will be kept
78
os.environ['WORKON_HOME'] = os.path.join(os.environ['RUNNER_WORKSPACE'], 'virtualenvs')
79
- lock_args = ['--keep-outdated', '--ignore-pipfile'] if has_lockfile else ['--skip-lock']
+ lock_args = ['--ignore-pipfile'] if has_lockfile else ['--skip-lock']
80
try:
81
_check_call(command + ['install'] + lock_args)
82
except subprocess.CalledProcessError:
0 commit comments