From c35627c77fd1a182cc806dc81b2e37030358961c Mon Sep 17 00:00:00 2001 From: mm-matthias <43849132+mm-matthias@users.noreply.github.com> Date: Tue, 14 Nov 2023 16:12:57 +0100 Subject: [PATCH] fix(compile): fix compatibility with older versions of poetry (#67) --- bin/compile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/compile b/bin/compile index a32cb43..565b16a 100755 --- a/bin/compile +++ b/bin/compile @@ -58,9 +58,9 @@ if [ "${POETRY_VERSION:0:3}" = "1.2" ] ; then poetry config virtualenvs.create false | indent fi -# Plugin is needs to be installed explicitly in future versions of Poetry +# Plugin needs to be installed explicitly in future versions of Poetry log "Install poetry-plugin-export" -poetry self add poetry-plugin-export | indent +poetry self add 'poetry-plugin-export@*' | indent REQUIREMENTS_FILE="requirements.txt"