Skip to content

Commit

Permalink
add julia-downgrade-compat-action to github CI (#33)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
bgctw authored Dec 27, 2023
1 parent d81c785 commit a9c6509
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: cjdoris/julia-downgrade-compat-action@v1
if: ${{ matrix.version == '1.6' }}
with:
skip: Pkg,TOML,Statistics
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
Expand Down
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ Optim = "429524aa-4258-5aef-a3af-852621145aeb"
DistributionFitsOptimExt = "Optim"

[compat]
Distributions = "0.25"
FillArrays = "0.12, 0.13, 1"
Distributions = "0.25.102"
FillArrays = "1"
Optim = "1.7"
Reexport = "1.2"
Requires = "1.2"
StaticArrays = "1.2"
Statistics = "1"
StatsAPI = "1"
StatsFuns = "0.9, 1"
StatsAPI = "1.6"
StatsFuns = "0.9.15, 1"
julia = "1.6"

[extras]
Expand Down

0 comments on commit a9c6509

Please sign in to comment.