From 9ec4462ed5ada946bbc76a7a35f3aa9e16f3645a Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Mon, 15 Apr 2024 08:39:12 -0500 Subject: [PATCH 1/2] be less explicit (#9936) --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 018af5cfc8c..c08b7ddf264 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -204,7 +204,7 @@ jobs: - name: Install source distributions # ignore dbt-1.0.0, which intentionally raises an error when installed from source run: | - find ./dist/dbt_[a-z]*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/ + find ./dist/*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/ - name: Check source distributions run: | From e055252001e60557ac05fe69b9cd4b7427e31b18 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Mon, 15 Apr 2024 12:34:44 -0500 Subject: [PATCH 2/2] 1.0 build without the core suffix but we want to ignore it --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c08b7ddf264..7de9a214b93 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -204,7 +204,7 @@ jobs: - name: Install source distributions # ignore dbt-1.0.0, which intentionally raises an error when installed from source run: | - find ./dist/*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/ + find ./dist/dbt[-_][a-z]*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/ - name: Check source distributions run: |