Skip to content

Commit 88cf1bc

Browse files
authored
Add downgrade CI script (#638)
* Add downgrade CI script * Update LazyArrays compat bounds * Limit DSP versions * Update BlockArrays compat * Update BandedMatrices compat * Update BlockBandedMatrices compat * Update StaticArrays compat * Use StaticArrays v1 * Use v1.1 of FFTW * Infinites v0.1.1 * Use Julia v1.9 for downgrade tests * Drop DomainSets v0.5 * Drop DomainSets 0.5 and IntervalSets <0.7 * IntervalSets v0.7.4+ * Update DSP, DualNumbers, SpecialFunctions, StaticArrays
1 parent 77cd9f1 commit 88cf1bc

File tree

2 files changed

+40
-12
lines changed

2 files changed

+40
-12
lines changed

.github/workflows/downgrade.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Downgrade
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
paths-ignore:
7+
- 'docs/**'
8+
push:
9+
branches:
10+
- master
11+
paths-ignore:
12+
- 'docs/**'
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
version: ['1.9']
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: julia-actions/setup-julia@v1
22+
with:
23+
version: ${{ matrix.version }}
24+
- uses: cjdoris/julia-downgrade-compat-action@v1
25+
with:
26+
skip: LinearAlgebra,SparseArrays,Statistics
27+
- uses: julia-actions/julia-buildpkg@v1
28+
- uses: julia-actions/julia-runtest@v1

Project.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,26 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
2727
[compat]
2828
AbstractFFTs = "0.5, 1"
2929
Aqua = "0.8"
30-
BandedMatrices = "0.16, 0.17, 1"
31-
BlockArrays = "0.14, 0.15, 0.16"
32-
BlockBandedMatrices = "0.10, 0.11, 0.12"
30+
BandedMatrices = "0.17.18, 1"
31+
BlockArrays = "0.16.26"
32+
BlockBandedMatrices = "0.12"
3333
Calculus = "0.5"
3434
Combinatorics = "1.0.2"
35-
DSP = "0.6, 0.7"
36-
DomainSets = "0.5, 0.6, 0.7"
37-
DualNumbers = "0.6.2"
38-
FFTW = "0.3, 1"
35+
DSP = "0.7.4"
36+
DomainSets = "0.6, 0.7"
37+
DualNumbers = "0.6.6"
38+
FFTW = "1.1"
3939
FillArrays = "1"
4040
InfiniteArrays = "0.13"
41-
Infinities = "0.1"
42-
IntervalSets = "0.5, 0.6, 0.7"
43-
LazyArrays = "0.20, 0.21, 0.22, 1"
41+
Infinities = "0.1.1"
42+
IntervalSets = "0.7.4"
43+
LazyArrays = "1"
4444
LinearAlgebra = "1.9"
4545
LowRankMatrices = "1"
4646
Random = "1.9"
4747
SparseArrays = "1.9"
48-
SpecialFunctions = "0.10, 1.0, 2"
49-
StaticArrays = "0.12, 1.0"
48+
SpecialFunctions = "2"
49+
StaticArrays = "1.3"
5050
Statistics = "1.9"
5151
Test = "1.9"
5252
julia = "1.9"

0 commit comments

Comments
 (0)