diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 09b885c3c7..4da62290e0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -24,16 +24,16 @@ jobs: matrix: julia-version: - '1.6' - - '1.9' - - '~1.10.0-0' + - '1.9' # to be removed in the near future + - '1.10' - 'nightly' os: - ubuntu-latest include: # Add a few windows and macOS jobs (not too many, the number we can run in parallel is limited) - - julia-version: '1.9' + - julia-version: '1.10' os: macOS-latest - - julia-version: '1.9' + - julia-version: '1.10' os: windows-latest steps: @@ -75,7 +75,7 @@ jobs: python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer - uses: julia-actions/setup-julia@v1 with: - version: '1.9' + version: '1.10' - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-docdeploy@v1 diff --git a/.github/workflows/CILong.yml b/.github/workflows/CILong.yml index ef5e78fc76..9d7f556190 100644 --- a/.github/workflows/CILong.yml +++ b/.github/workflows/CILong.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: julia-version: - - 1.9 + - '1.10' julia-arch: - x64 os: @@ -62,7 +62,7 @@ jobs: fail-fast: false matrix: julia-version: - - 1.9 + - '1.10' julia-arch: - x64 os: diff --git a/.github/workflows/oscar.yml b/.github/workflows/oscar.yml index e9c2994a09..161b3d6fed 100644 --- a/.github/workflows/oscar.yml +++ b/.github/workflows/oscar.yml @@ -25,7 +25,7 @@ jobs: - name: "Set up Julia" uses: julia-actions/setup-julia@v1 with: - version: '~1.9.0-0' + version: '1.10' - name: OscarDevTools - CI if: github.repository == 'oscar-system/OscarDevTools.jl' run: | diff --git a/test/runtests.jl b/test/runtests.jl index a0204408c0..31ee2367a3 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -304,11 +304,11 @@ else end # Run the doctests - if v"1.9.0" <= VERSION < v"1.10.0-" - @info "Running doctests (Julia version is 1.9)" + if v"1.10-" <= VERSION < v"1.11-" + @info "Running doctests (Julia version is 1.10)" DocMeta.setdocmeta!(Hecke, :DocTestSetup, :(using Hecke); recursive = true) doctest(Hecke) else - @info "Not running doctests (Julia version must be 1.9)" + @info "Not running doctests (Julia version must be 1.10)" end end