Skip to content

Commit f59771a

Browse files
authored
Bump deps etc (#210)
* Add missing Stheno deps in test / docs * Bump CRC dep * Remove Flux as test dep * Update AbstractGPs dep for internal changes * Bump patch * Tweak docs action
1 parent 7d173b1 commit f59771a

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.github/workflows/Docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ jobs:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
2727
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
2828
GKSwstype: nul # turn off GR's interactive plotting for notebooks
29+
JULIA_PKG_SERVER: ''
2930
shell: julia --color=yes --project=docs/ {0}

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Stheno"
22
uuid = "8188c328-b5d6-583d-959b-9690869a5511"
3-
version = "0.7.12"
3+
version = "0.7.13"
44

55
[deps]
66
AbstractGPs = "99985d1d-32ba-4be9-9821-2ec096f28918"
@@ -17,9 +17,9 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
1717
ZygoteRules = "700de1a5-db45-46bc-99cf-38207098b444"
1818

1919
[compat]
20-
AbstractGPs = "0.2.25, 0.3"
20+
AbstractGPs = "0.3.9"
2121
BlockArrays = "0.15, 0.16"
22-
ChainRulesCore = "0.9.44, 0.10"
22+
ChainRulesCore = "1"
2323
FillArrays = "0.7, 0.8, 0.9, 0.10, 0.11, 0.12"
2424
KernelFunctions = "0.9.6, 0.10"
2525
MacroTools = "0.4, 0.5"

docs/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ Stheno = "8188c328-b5d6-583d-959b-9690869a5511"
66
[compat]
77
Documenter = "0.27"
88
julia = "1.6"
9+
Stheno = "0.7"

test/Project.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
4-
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
54
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
65
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
76
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
8-
Stheno = "8188c328-b5d6-583d-959b-9690869a5511"
97
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
108
TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f"
119

1210
[compat]
1311
Documenter = "0.25, 0.26, 0.27"
1412
FiniteDifferences = "0.12"
15-
Flux = "0.12"
1613
TimerOutputs = "0.5"

test/gp/gp.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
x = collect(range(-1.0, 1.0; length=N))
1010
x′ = collect(range(-1.0, 1.0; length=N′))
1111

12-
@test mean(f, x) == AbstractGPs._map(m, x)
12+
@test mean(f, x) == AbstractGPs._map_meanfunction(m, x)
1313
@test cov(f, x) == kernelmatrix(k, x)
1414
AbstractGPs.TestUtils.test_internal_abstractgps_interface(rng, f, x, x′)
1515
end
@@ -25,8 +25,8 @@
2525
k1, k2 = SqExponentialKernel(), SqExponentialKernel()
2626
f1, f2 = wrap(GP(m1, k1), gpc), wrap(GP(m2, k2), gpc)
2727

28-
@test mean(f1, x) == AbstractGPs._map(m1, x)
29-
@test mean(f2, x) == AbstractGPs._map(m2, x)
28+
@test mean(f1, x) == AbstractGPs._map_meanfunction(m1, x)
29+
@test mean(f2, x) == AbstractGPs._map_meanfunction(m2, x)
3030

3131
@test cov(f1, f2, x, x′) == zeros(N, N′)
3232
@test var(f1, x) == ones(N)

0 commit comments

Comments
 (0)