From ba7a5415550f3c2c51686ff8719f61a763b7940a Mon Sep 17 00:00:00 2001 From: "jake.ross" Date: Tue, 23 Dec 2025 10:10:10 -0700 Subject: [PATCH] feat: update CD_staging.yml for requirements export options and clean up cli.py imports --- .github/workflows/CD_staging.yml | 6 +++++- cli/cli.py | 3 +-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CD_staging.yml b/.github/workflows/CD_staging.yml index c39e37bc9..f72bd9d9c 100644 --- a/.github/workflows/CD_staging.yml +++ b/.github/workflows/CD_staging.yml @@ -26,7 +26,11 @@ jobs: - name: Generate requirements.txt run: | - uv export -o requirements.txt + uv export \ + --format requirements-txt \ + --no-emit-project \ + --no-dev \ + --output-file requirements.txt - name: Authenticate to Google Cloud uses: 'google-github-actions/auth@v2' diff --git a/cli/cli.py b/cli/cli.py index 94117dd78..50625434b 100644 --- a/cli/cli.py +++ b/cli/cli.py @@ -13,12 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== +import click from dotenv import load_dotenv load_dotenv() -import click - @click.group() def cli():