Skip to content

Commit

Permalink
Merge pull request #553 from SciML/downgrade
Browse files Browse the repository at this point in the history
Add downgrade CI for testing lower bounds
  • Loading branch information
ChrisRackauckas authored Dec 11, 2023
2 parents 84602f3 + 16a459e commit 3b812a5
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 20 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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']
steps:
- uses: actions/checkout@v3
- 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
40 changes: 20 additions & 20 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,41 +50,41 @@ SciMLBaseRCallExt = "RCall"
SciMLBaseZygoteExt = "Zygote"

[compat]
ADTypes = "0.1.3, 0.2"
ArrayInterface = "6, 7"
ChainRules = "1.57.0"
ChainRulesCore = "1.16"
ADTypes = "0.2.5"
ArrayInterface = "7.6"
ChainRules = "1.58.0"
ChainRulesCore = "1.18"
CommonSolve = "0.2.4"
ConstructionBase = "1"
ConstructionBase = "1.5"
Distributed = "1.9"
DocStringExtensions = "0.8, 0.9"
DocStringExtensions = "0.9"
EnumX = "1"
FillArrays = "1.6"
FillArrays = "1.9"
FunctionWrappersWrappers = "0.1.3"
IteratorInterfaceExtensions = "^0.1, ^1"
IteratorInterfaceExtensions = "^1"
LinearAlgebra = "1.9"
Logging = "1.9"
Markdown = "1.9"
PartialFunctions = "1.1"
PrecompileTools = "1"
PrecompileTools = "1.2"
Preferences = "1.3"
Printf = "1.9"
PyCall = "1.96"
PythonCall = "0.9"
PythonCall = "0.9.15"
RCall = "0.13.18"
RecipesBase = "0.7.0, 0.8, 1.0"
RecursiveArrayTools = "2.33"
RecipesBase = "1.0"
RecursiveArrayTools = "2.38"
Reexport = "1"
RuntimeGeneratedFunctions = "0.5"
SciMLOperators = "0.1.18, 0.2, 0.3"
StaticArrays = "1"
StaticArraysCore = "1"
Statistics = "1"
SciMLOperators = "0.3.7"
StaticArrays = "1.7"
StaticArraysCore = "1.4"
Statistics = "1.9"
SymbolicIndexingInterface = "0.2"
Tables = "1"
TruncatedStacktraces = "1"
QuasiMonteCarlo = "0.2, 0.3"
Zygote = "0.6"
Tables = "1.11"
TruncatedStacktraces = "1.4"
QuasiMonteCarlo = "0.2.19, 0.3"
Zygote = "0.6.67"
julia = "1.9"

[extras]
Expand Down

0 comments on commit 3b812a5

Please sign in to comment.