From 6b7b32d61af1ef5995621c1c29e1a8473655111e Mon Sep 17 00:00:00 2001 From: "Fabian H." <73600109+teutoburg@users.noreply.github.com> Date: Fri, 6 Feb 2026 11:35:17 +0100 Subject: [PATCH 1/4] Try without IRDB installation --- bin/download_scopesim_data.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/download_scopesim_data.sh b/bin/download_scopesim_data.sh index 9926b50..fe7b12a 100755 --- a/bin/download_scopesim_data.sh +++ b/bin/download_scopesim_data.sh @@ -100,10 +100,10 @@ poetry update --with=test,dev,docs popd git clone https://github.com/AstarVienna/irdb.git -pushd irdb +# pushd irdb # irdb doesn't use poetry yet -pip install -e ".[test]" -popd +# pip install -e ".[test]" +# popd # poetry update will upgrade only to the latest versions that are released. # The packages will therefore downgrade each other. @@ -119,7 +119,7 @@ pip install -e ScopeSim pip install -e ScopeSim_Templates pip install -e skycalc_ipy pip install -e AnisoCADO -pip install -e irdb +# pip install -e irdb # Run the tests. From 7ff25e456f0a5de4531223de2b595de6547b7077 Mon Sep 17 00:00:00 2001 From: "Fabian H." <73600109+teutoburg@users.noreply.github.com> Date: Fri, 6 Feb 2026 11:50:44 +0100 Subject: [PATCH 2/4] Install from test requirements instead --- bin/download_scopesim_data.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/download_scopesim_data.sh b/bin/download_scopesim_data.sh index fe7b12a..d32fad2 100755 --- a/bin/download_scopesim_data.sh +++ b/bin/download_scopesim_data.sh @@ -100,10 +100,10 @@ poetry update --with=test,dev,docs popd git clone https://github.com/AstarVienna/irdb.git -# pushd irdb +pushd irdb # irdb doesn't use poetry yet -# pip install -e ".[test]" -# popd +pip install -r requirements.github_actions.txt +popd # poetry update will upgrade only to the latest versions that are released. # The packages will therefore downgrade each other. From 8577f4a9ebb0bf89be81b87341dfd82dc06d4135 Mon Sep 17 00:00:00 2001 From: "Fabian H." <73600109+teutoburg@users.noreply.github.com> Date: Sun, 8 Feb 2026 15:20:17 +0100 Subject: [PATCH 3/4] Don't run auto PR when triggered by PR --- .github/workflows/download_data.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/download_data.yml b/.github/workflows/download_data.yml index 3fc1df2..1da9172 100644 --- a/.github/workflows/download_data.yml +++ b/.github/workflows/download_data.yml @@ -37,6 +37,7 @@ jobs: # Create a PR with the changes from the above script, if any. - name: Create Pull Request + if: github.event_name != 'pull_request' uses: peter-evans/create-pull-request@v8 with: commit-message: "Update stored data" From 7dbe328cd4347fcbea9b092225a890500a3b212d Mon Sep 17 00:00:00 2001 From: "Fabian H." <73600109+teutoburg@users.noreply.github.com> Date: Sun, 8 Feb 2026 15:21:23 +0100 Subject: [PATCH 4/4] !(==) -> != --- .github/workflows/download_data.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/download_data.yml b/.github/workflows/download_data.yml index 1da9172..3ffa2f8 100644 --- a/.github/workflows/download_data.yml +++ b/.github/workflows/download_data.yml @@ -53,7 +53,7 @@ jobs: on-failure: runs-on: ubuntu-latest - if: ${{ always() && (needs.download_data.result == 'failure' || needs.download_data.result == 'timed_out') && !(github.event_name == 'pull_request') }} + if: ${{ always() && (needs.download_data.result == 'failure' || needs.download_data.result == 'timed_out') && (github.event_name != 'pull_request') }} needs: - download_data steps: