From 9e50899a902119fd48c39eff04ba476345c1d89a Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Wed, 5 Oct 2022 22:28:45 -0700 Subject: [PATCH] Stop disabling new `poetry` installer This was added in https://github.com/dependabot/dependabot-core/pull/3459/ to workaround the underlying issue of https://github.com/python-poetry/poetry/issues/3010. However, `poetry` `1.2` fixed the underlying issue, and we are now on `poetry` `1.2.1` so we can remove this workaround. See also: * https://github.com/python-poetry/poetry/issues/3010#issuecomment-1207683271 * https://github.com/python-poetry/poetry/issues/3010#issuecomment-1076518050 * https://github.com/python-poetry/poetry/issues/3010#issuecomment-1122209272 * https://github.com/dependabot/dependabot-core/pull/5492 --- python/helpers/build | 5 ----- 1 file changed, 5 deletions(-) diff --git a/python/helpers/build b/python/helpers/build index 7234d689ea..3c861ed55e 100755 --- a/python/helpers/build +++ b/python/helpers/build @@ -19,8 +19,3 @@ cp -r \ cd "$install_dir" PYENV_VERSION=3.10.6 pyenv exec pip --disable-pip-version-check install --use-pep517 -r "requirements.txt" - -# Workaround of https://github.com/python-poetry/poetry/issues/3010 -# By default poetry config file is stored under ~/.config/pypoetry -# and is not bound to any specific Python version -PYENV_VERSION=3.10.6 pyenv exec poetry config experimental.new-installer false