Skip to content

Commit 124e0cb

Browse files
Merge pull request #698 from ChrisRackauckas-Claude/update-compat-bounds-2025
Update compat bounds to exclude releases older than 1 year
2 parents f396d36 + 1d5c651 commit 124e0cb

File tree

2 files changed

+41
-5
lines changed

2 files changed

+41
-5
lines changed

.github/workflows/Downgrade.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Downgrade
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
paths-ignore:
7+
- 'docs/**'
8+
push:
9+
branches:
10+
- main
11+
paths-ignore:
12+
- 'docs/**'
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
group:
19+
- Core
20+
downgrade_mode: ['alldeps']
21+
julia-version: ['1.10']
22+
steps:
23+
- uses: actions/checkout@v4
24+
- uses: julia-actions/setup-julia@v2
25+
with:
26+
version: ${{ matrix.julia-version }}
27+
- uses: julia-actions/julia-downgrade-compat@v2
28+
# if: ${{ matrix.version == '1.6' }}
29+
with:
30+
skip: Pkg,TOML
31+
- uses: julia-actions/julia-buildpkg@v1
32+
- uses: julia-actions/julia-runtest@v1
33+
with:
34+
ALLOW_RERESOLVE: false
35+
env:
36+
GROUP: ${{ matrix.group }}

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
88
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
99

1010
[compat]
11-
BenchmarkTools = "1"
12-
Compat = "4"
13-
FiniteDifferences = "0.12"
14-
OffsetArrays = "1"
15-
StaticArrays = "1"
11+
BenchmarkTools = "1.5"
12+
Compat = "4.15"
13+
FiniteDifferences = "0.12.32"
14+
OffsetArrays = "1.14"
15+
StaticArrays = "1.9.2"
1616
julia = "1.10"
1717

1818
[extensions]

0 commit comments

Comments
 (0)