diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f77e29f..c53fecd 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,7 +19,6 @@ jobs: - Core version: - '1' - - '1.6' steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml new file mode 100644 index 0000000..be85e50 --- /dev/null +++ b/.github/workflows/Downgrade.yml @@ -0,0 +1,31 @@ +name: Downgrade +on: + pull_request: + branches: + - master + paths-ignore: + - 'docs/**' + push: + branches: + - master + paths-ignore: + - 'docs/**' +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + version: ['1'] + group: + - Core + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.version }} + - uses: cjdoris/julia-downgrade-compat-action@v1 +# if: ${{ matrix.version == '1.6' }} + with: + skip: Pkg,TOML + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 \ No newline at end of file diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index ade7c91..1fb89d3 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - julia-version: [1,1.6] + julia-version: [1] os: [ubuntu-latest] package: - {user: SciML, repo: OrdinaryDiffEq.jl, group: InterfaceI} diff --git a/Project.toml b/Project.toml index 98030ff..3dc9d8a 100644 --- a/Project.toml +++ b/Project.toml @@ -17,20 +17,20 @@ libblastrampoline_jll = "8e850b90-86db-534c-a0d3-1478176c7d93" [compat] Adapt = "3.4.0, 4" Aqua = "0.8" -ArrayInterface = "7" -ForwardDiff = "0.10" +ArrayInterface = "7.1" +ForwardDiff = "0.10.13" GPUArraysCore = "0.1" GenericSchur = "0.5.3" -LinearAlgebra = "1" +LinearAlgebra = "1.9" Pkg = "1" PrecompileTools = "1" -Printf = "1" +Printf = "1.9" Random = "1" SafeTestsets = "0.1" -SparseArrays = "1" -StaticArrays = "1" +SparseArrays = "1.9" +StaticArrays = "1.2" Test = "1" -julia = "1.6" +julia = "1.9" [extras] Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"