From 7937d47ffa29c5bda16e5e69cb089e4462877d83 Mon Sep 17 00:00:00 2001 From: Boris Bera Date: Thu, 14 Nov 2024 13:19:57 -0500 Subject: [PATCH] fix(build): ensure poetry export returns index credentials --- coveo_stew/stew.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coveo_stew/stew.py b/coveo_stew/stew.py index f8a27c4..47264ff 100644 --- a/coveo_stew/stew.py +++ b/coveo_stew/stew.py @@ -307,7 +307,7 @@ def build(self, target_path: Path = None) -> Path: def export(self) -> str: """Generates the content of a `requirements.txt` file based on the lock.""" - command = ["export"] + command = ["export", "--with-credentials"] if self.options.build_without_hashes: command.append("--without-hashes")