Skip to content

Commit 40d083b

Browse files
authored
Merge pull request #322 from SciML/1.10.2
Restrict Julia version to != 1.10.3
2 parents 8f59966 + 142f2f7 commit 40d083b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- Core
1616
- ModelingToolkitSIExt
1717
version:
18-
- '1'
18+
- '<1.10.3 || >=1.10.4'
1919
- '1.6'
2020
steps:
2121
- uses: actions/checkout@v4

.github/workflows/Documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: julia-actions/setup-julia@latest
1616
with:
17-
version: '1'
17+
version: '<1.10.3 || >=1.10.4'
1818
- name: Install dependencies
1919
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2020
- name: Build and deploy

.github/workflows/Downgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
version: ['1']
18+
version: ['<1.10.3 || >=1.10.4']
1919
steps:
2020
- uses: actions/checkout@v4
2121
- uses: julia-actions/setup-julia@v2

.github/workflows/Invalidations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: julia-actions/setup-julia@v2
2020
with:
21-
version: '1'
21+
version: '<1.10.3 || >=1.10.4'
2222
- uses: actions/checkout@v4
2323
- uses: julia-actions/julia-buildpkg@v1
2424
- uses: julia-actions/julia-invalidations@v1

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Symbolics = "5.20"
5353
Test = "1.6, 1.7"
5454
TestSetExtensions = "2"
5555
TimerOutputs = "0.5"
56-
julia = "1.6, 1.7"
56+
julia = "<1.10.3, ≥1.10.4"
5757

5858
[extras]
5959
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

0 commit comments

Comments
 (0)