Skip to content

Commit 7fc54fc

Browse files
authored
Test and fix compat lower bounds (#65)
* Automated commit made by MassInstallAction.jl * Update .github/workflows/DowngradeCI.yml * Update .github/workflows/DowngradeCI.yml * Make extra lower bounds compatible * Set correct DimensionalData lower bound * Remove incompatible LogExpFunctions version * Increment patch number
1 parent 6b17a96 commit 7fc54fc

File tree

2 files changed

+29
-5
lines changed

2 files changed

+29
-5
lines changed

.github/workflows/DowngradeCI.yml

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

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PSIS"
22
uuid = "ce719bf2-d5d0-4fb9-925d-10a81b42ad04"
33
authors = ["Seth Axen <seth.axen@gmail.com> and contributors"]
4-
version = "0.9.4"
4+
version = "0.9.5"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -11,12 +11,12 @@ RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
1111
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1212

1313
[compat]
14-
DimensionalData = "0.24"
14+
DimensionalData = "0.24.2"
1515
Distributions = "0.25.81"
16-
JLD2 = "0.4"
16+
JLD2 = "0.4.28"
1717
LinearAlgebra = "1.6"
18-
LogExpFunctions = "0.2.0, 0.3"
19-
Plots = "1"
18+
LogExpFunctions = "0.3.3"
19+
Plots = "1.10.1"
2020
Printf = "1.6"
2121
RecipesBase = "1"
2222
ReferenceTests = "0.9, 0.10"

0 commit comments

Comments
 (0)