Skip to content

Commit 1a4db59

Browse files
committed
Change julia version to 1.10
1 parent c768a57 commit 1a4db59

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/BuildDeployDoc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: julia-actions/setup-julia@v1
2020
with:
21-
version: '1.9'
21+
version: '1.10'
2222
- name: Install dependencies
2323
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2424
- name: Build and deploy

.github/workflows/CompatHelper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Julia, but only if it is not already available in the PATH
1919
uses: julia-actions/setup-julia@v1
2020
with:
21-
version: '1'
21+
version: '1.10'
2222
arch: ${{ runner.arch }}
2323
if: steps.julia_in_path.outcome != 'success'
2424
- name: "Add the General registry via Git"

.github/workflows/formatter.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: install Julia
1010
uses: julia-actions/setup-julia@v1
1111
with:
12-
version: 1.9
12+
version: 1.10
1313
- name: Install Julia requirements
1414
run: julia --project=${GITHUB_WORKSPACE}/.formatting -e 'import Pkg; Pkg.instantiate()'
1515
- name: Check code style

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/docs/build/
1+
docs/build/
22

33
# File generated by Pkg, the package manager, based on a corresponding Project.toml
44
# It records a fixed state of all packages used by the project. As such, it should not be

.gitlab-ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ unit_tests_releases:
2626
extends: .untit_test_template
2727
parallel:
2828
matrix:
29-
- JULIA_VERSION: ["1.6", "1.7", "1.8", "1.9"]
29+
- JULIA_VERSION: ["1.6", "1.7", "1.8", "1.9", "1.10", "1.11"]
3030
image: julia:$JULIA_VERSION
3131

3232
unit_tests_nightly:
@@ -61,7 +61,7 @@ unit_tests_nightly:
6161
allow_failure: true
6262

6363
generate_integration_tests:
64-
image: julia:1.9
64+
image: julia:1.10
6565
stage: generate_integration_test
6666
script:
6767
# extract package name
@@ -100,8 +100,8 @@ run_integration_tests:
100100
job: generate_integration_tests
101101
strategy: depend
102102

103-
verify-unit-test-deps_julia1.9:
104-
image: julia:1.9
103+
verify-unit-test-deps_julia1.10:
104+
image: julia:1.10
105105
stage: verify-unit-test-deps
106106
script:
107107
- apt update && apt install -y git

0 commit comments

Comments
 (0)