Skip to content

Commit 05deb6b

Browse files
authored
Upgrade Julia versions to 1.10 (new LTS) (#424)
* Upgrade Julia versions to 1.10 (new LTS) * Forgot to change a label * Up version in Project.toml * Bump Version * Forgot one last entry * Still more * Quotes * Update macos arch
1 parent 28319c5 commit 05deb6b

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

.buildkite/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ env:
33
SECRET_CODECOV_TOKEN: "JLCJz1NwGpgcY/+lqJ5u0UwHa2jfff200KR3EJFTykWruv8ZKX9trdPlZMC7FzyRReMlT439OZVZxh/YipGsa3lgp74oVfFUPQzOC8JGI3YnpvG6aIn03dR/3RsgRQR44Hh0GnTUFskIR9y9V4GVR+X25dlpBIgZ3z5xhlvLKezYBGRfstv4ZhwEsgdEkIs1AmLITi0Px9D3PNXTfoi4w2ZW4Y+kjeqKsaMUpc5v8atNIojP/G05JKKoOaVmY4i+jTiSJyhDcCFFmcQCmIT7xX+KYEoYZPaHAGZGgH+scuiXWVXt9ROUXQ20YdPB8E2zPonhbkLPmg87F/j6tCqB5g==;U2FsdGVkX1/fFoqgeV4V7jypc2seI4AMUEEz1XbIJbH7jRdyP6tsHQWPLxo9guk7R5HxKzlKKgR7sUfxVyd0KA=="
44

55
steps:
6-
- label: "Julia v1"
6+
- label: "Julia v1.10"
77
plugins:
88
- JuliaCI/julia#v1:
9-
version: "1"
9+
version: "1.10"
1010
- JuliaCI/julia-test#v1: ~
1111
- JuliaCI/julia-coverage#v1:
1212
codecov: true

.github/workflows/CI.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,17 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
version:
24-
- '1'
25-
- '1.6'
24+
- '1.10'
2625
- 'nightly'
2726
os:
2827
- ubuntu-latest
2928
arch:
3029
- x64
3130
include:
32-
- version: 1
31+
- version: '1.10'
3332
os: macOS-latest
34-
arch: x64
35-
- version: 1
33+
arch: aarch64
34+
- version: '1.10'
3635
os: windows-latest
3736
arch: x64
3837
steps:
@@ -54,13 +53,13 @@ jobs:
5453
- uses: julia-actions/julia-buildpkg@v1
5554
- uses: julia-actions/julia-runtest@v1
5655
with:
57-
coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
56+
coverage: ${{ matrix.version == '1.10' && matrix.os == 'ubuntu-latest' }}
5857
env:
5958
GROUP: AbstractGPs
6059
- uses: julia-actions/julia-processcoverage@v1
61-
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
60+
if: matrix.version == '1.10' && matrix.os == 'ubuntu-latest'
6261
- uses: codecov/codecov-action@v5
63-
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
62+
if: matrix.version == '1.10' && matrix.os == 'ubuntu-latest'
6463
with:
6564
files: lcov.info
6665
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/PPL.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
version:
23-
- '1'
23+
- '1.10'
2424
os:
2525
- ubuntu-latest
2626
arch:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v2
2121
- uses: julia-actions/setup-julia@latest
2222
with:
23-
version: '1'
23+
version: '1.10'
2424
- name: Install dependencies
2525
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2626
env:

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: julia-actions/setup-julia@latest
1818
with:
19-
version: 1
19+
version: '1.10'
2020
- run: |
2121
julia -e 'using Pkg; Pkg.add("JuliaFormatter")'
2222
julia -e 'using JuliaFormatter; format("."; verbose=true)'

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "AbstractGPs"
22
uuid = "99985d1d-32ba-4be9-9821-2ec096f28918"
33
authors = ["JuliaGaussianProcesses Team"]
4-
version = "0.5.23"
4+
version = "0.5.24"
55

66
[deps]
77
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
@@ -32,4 +32,4 @@ Reexport = "0.2, 1"
3232
Statistics = "1"
3333
StatsBase = "0.33, 0.34"
3434
Test = "1"
35-
julia = "1.6"
35+
julia = "1.10"

0 commit comments

Comments
 (0)