Skip to content

Commit a9c6509

Browse files
authored
add julia-downgrade-compat-action to github CI (#33)
* add julia-downgrade-compat-action to github CI * skip downgrading Statistics standard library * increase required FillArrays version to 1 because lowest version specified by Distributions.jl is not available. * increase Distribution minimal version to 0.25.102 requirement so that FillArrays 1 can be used * increase StatsFuns version to 0.9.15 to match Distributions minimal requirements * increase StatsAPI version to 1.6 to match Distributions minimal requirements
1 parent d81c785 commit a9c6509

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ jobs:
2828
with:
2929
version: ${{ matrix.version }}
3030
arch: ${{ matrix.arch }}
31+
- uses: cjdoris/julia-downgrade-compat-action@v1
32+
if: ${{ matrix.version == '1.6' }}
33+
with:
34+
skip: Pkg,TOML,Statistics
3135
- uses: actions/cache@v1
3236
env:
3337
cache-name: cache-artifacts

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ Optim = "429524aa-4258-5aef-a3af-852621145aeb"
2020
DistributionFitsOptimExt = "Optim"
2121

2222
[compat]
23-
Distributions = "0.25"
24-
FillArrays = "0.12, 0.13, 1"
23+
Distributions = "0.25.102"
24+
FillArrays = "1"
2525
Optim = "1.7"
2626
Reexport = "1.2"
2727
Requires = "1.2"
2828
StaticArrays = "1.2"
2929
Statistics = "1"
30-
StatsAPI = "1"
31-
StatsFuns = "0.9, 1"
30+
StatsAPI = "1.6"
31+
StatsFuns = "0.9.15, 1"
3232
julia = "1.6"
3333

3434
[extras]

0 commit comments

Comments
 (0)