Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency lower bounds and test with CI #120

Merged
merged 11 commits into from
Feb 14, 2024
15 changes: 14 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
name: ${{ matrix.downgrade && 'Downgrade / ' || '' }}Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -21,20 +21,33 @@ jobs:
- ubuntu-latest
arch:
- x64
downgrade:
- false
include:
- version: '1'
os: macOS-latest
arch: x64
downgrade: false
- version: '1'
os: windows-latest
arch: x64
downgrade: false
- version: '1'
os: ubuntu-latest
arch: x64
downgrade: true
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: cjdoris/julia-downgrade-compat-action@v1
with:
skip: LinearAlgebra,Markdown,Printf,Random,Statistics
if: ${{ matrix.downgrade }}
name: Downgrade dependencies to oldest supported versions
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
Expand Down
12 changes: 6 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MCMCDiagnosticTools"
uuid = "be115224-59cd-429b-ad48-344e309966f0"
authors = ["David Widmann", "Seth Axen"]
version = "0.3.8"
version = "0.3.9"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand All @@ -19,15 +19,15 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"

[compat]
AbstractFFTs = "0.5, 1"
DataAPI = "1.6"
DataAPI = "1.8"
DataStructures = "0.18.3"
Distributions = "0.25"
Distributions = "0.25.57"
LinearAlgebra = "1.6"
MLJModelInterface = "1.6"
Random = "1.6"
SpecialFunctions = "0.8, 0.9, 0.10, 1, 2"
SpecialFunctions = "1.8.4, 2"
Statistics = "1.6"
StatsBase = "0.33, 0.34"
StatsBase = "0.33.3, 0.34"
StatsFuns = "1"
Tables = "1"
Tables = "1.9"
julia = "1.6"
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
[compat]
Documenter = "1"
EvoTrees = "0.14.7, 0.15, 0.16"
MLJBase = "0.19, 0.20, 0.21, 1"
MLJBase = "0.20, 0.21, 1"
MLJIteration = "0.5, 0.6"
StatisticalMeasures = "0.1"
Statistics = "1.6"
Expand Down
18 changes: 9 additions & 9 deletions test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
Aqua = "0.8"
Distributions = "0.25"
DynamicHMC = "3"
Aqua = "0.8.1"
Distributions = "0.25.57"
DynamicHMC = "3.2"
EvoTrees = "0.14.7, 0.15, 0.16"
FFTW = "1.1"
LogDensityProblems = "0.12, 1, 2"
LogExpFunctions = "0.3"
MLJBase = "0.19, 0.20, 0.21, 1"
LogExpFunctions = "0.3.26"
MLJBase = "0.20, 0.21, 1"
MLJDecisionTreeInterface = "0.3, 0.4"
MLJIteration = "0.5, 0.6"
MLJLIBSVMInterface = "0.2"
MLJModels = "0.16"
MLJXGBoostInterface = "0.3"
OffsetArrays = "1"
MLJXGBoostInterface = "0.3.4"
OffsetArrays = "1.11"
Statistics = "1.6"
StatsBase = "0.33, 0.34"
Tables = "1"
StatsBase = "0.33.3, 0.34"
Tables = "1.9"
julia = "1.6"
Loading