Skip to content

Commit 78bbe69

Browse files
committed
Use julia 1.10 as default in CI
1 parent d95b1f0 commit 78bbe69

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ jobs:
2424
matrix:
2525
julia-version:
2626
- '1.6'
27-
- '1.9'
28-
- '~1.10.0-0'
27+
- '1.9' # to be removed in the near future
28+
- '1.10'
2929
- 'nightly'
3030
os:
3131
- ubuntu-latest
3232
include:
3333
# Add a few windows and macOS jobs (not too many, the number we can run in parallel is limited)
34-
- julia-version: '1.9'
34+
- julia-version: '1.10'
3535
os: macOS-latest
36-
- julia-version: '1.9'
36+
- julia-version: '1.10'
3737
os: windows-latest
3838

3939
steps:
@@ -75,7 +75,7 @@ jobs:
7575
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer
7676
- uses: julia-actions/setup-julia@v1
7777
with:
78-
version: '1.9'
78+
version: '1.10'
7979
- uses: julia-actions/cache@v1
8080
- uses: julia-actions/julia-buildpkg@v1
8181
- uses: julia-actions/julia-docdeploy@v1

.github/workflows/CILong.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
julia-version:
25-
- 1.9
25+
- 1.10
2626
julia-arch:
2727
- x64
2828
os:
@@ -62,7 +62,7 @@ jobs:
6262
fail-fast: false
6363
matrix:
6464
julia-version:
65-
- 1.9
65+
- 1.10
6666
julia-arch:
6767
- x64
6868
os:

.github/workflows/oscar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: "Set up Julia"
2626
uses: julia-actions/setup-julia@v1
2727
with:
28-
version: '~1.9.0-0'
28+
version: '1.10'
2929
- name: OscarDevTools - CI
3030
if: github.repository == 'oscar-system/OscarDevTools.jl'
3131
run: |

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,11 +304,11 @@ else
304304
end
305305

306306
# Run the doctests
307-
if v"1.9.0" <= VERSION < v"1.10.0-"
308-
@info "Running doctests (Julia version is 1.9)"
307+
if v"1.10-" <= VERSION < v"1.11-"
308+
@info "Running doctests (Julia version is 1.10)"
309309
DocMeta.setdocmeta!(Hecke, :DocTestSetup, :(using Hecke); recursive = true)
310310
doctest(Hecke)
311311
else
312-
@info "Not running doctests (Julia version must be 1.9)"
312+
@info "Not running doctests (Julia version must be 1.10)"
313313
end
314314
end

0 commit comments

Comments
 (0)