From 726b8b5fd8838869c6b14293c688b181009a61ae Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Sat, 11 Jan 2025 01:03:45 +0000 Subject: [PATCH 1/5] CompatHelper: bump compat for DynamicPPL in [weakdeps] to 0.33, (keep existing compat) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 7e6419ca0..89f9aa5a5 100644 --- a/Project.toml +++ b/Project.toml @@ -65,7 +65,7 @@ BridgeStan = "2" DataFrames = "1" Distributions = "0.25" DocStringExtensions = "0.9" -DynamicPPL = "0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.30, 0.31, 0.32" +DynamicPPL = "0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.30, 0.31, 0.32, 0.33" Enzyme = "0.12, 0.13" Expect = "0.3" FillArrays = "1" From 817b633eb27b33dfa564768cdcfc43344cfc74da Mon Sep 17 00:00:00 2001 From: Miguel Biron-Lattes Date: Sat, 11 Jan 2025 09:29:32 -0800 Subject: [PATCH 2/5] Update CI.yml --- .github/workflows/CI.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 31441b4ff..c987d5304 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -29,6 +29,13 @@ jobs: - ubuntu-latest - macos-13 - windows-latest + # handle this https://github.com/Julia-Tempering/Pigeons.jl/pull/309#issuecomment-2585036057 + exclude: + - version: '1.9' + - os: ubuntu-latest + include: + - version: '1.9' + - os: ubuntu-22.04 steps: - name: Enable long paths on windows if: ${{ startsWith(matrix.os, 'windows') }} @@ -61,7 +68,7 @@ jobs: strategy: matrix: version: - - '1.9' + - '1.10' os: - ubuntu-latest From e6cde7a57077ae10ddb406e7a31860d640b80a27 Mon Sep 17 00:00:00 2001 From: Miguel Biron-Lattes Date: Sat, 11 Jan 2025 09:30:20 -0800 Subject: [PATCH 3/5] Update CI.yml --- .github/workflows/CI.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c987d5304..38a8da112 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -30,12 +30,13 @@ jobs: - macos-13 - windows-latest # handle this https://github.com/Julia-Tempering/Pigeons.jl/pull/309#issuecomment-2585036057 - exclude: - - version: '1.9' - - os: ubuntu-latest include: - version: '1.9' - os: ubuntu-22.04 + exclude: + - version: '1.9' + - os: ubuntu-latest + steps: - name: Enable long paths on windows if: ${{ startsWith(matrix.os, 'windows') }} From 90ea2704cd429f9dc2c0dbd14a30b4a5265593ba Mon Sep 17 00:00:00 2001 From: Miguel Biron-Lattes Date: Sat, 11 Jan 2025 09:34:21 -0800 Subject: [PATCH 4/5] Update CI.yml --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 38a8da112..227ff2c91 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -32,10 +32,10 @@ jobs: # handle this https://github.com/Julia-Tempering/Pigeons.jl/pull/309#issuecomment-2585036057 include: - version: '1.9' - - os: ubuntu-22.04 + os: ubuntu-22.04 exclude: - version: '1.9' - - os: ubuntu-latest + os: ubuntu-latest steps: - name: Enable long paths on windows From e2cd67a087503b436239112fab1430fe26996274 Mon Sep 17 00:00:00 2001 From: Miguel Biron-Lattes Date: Sat, 11 Jan 2025 12:14:01 -0800 Subject: [PATCH 5/5] Update CI.yml --- .github/workflows/CI.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 227ff2c91..a7a11a377 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -80,7 +80,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '11' - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }}