Skip to content

Commit

Permalink
Bump deps etc (#210)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
willtebbutt authored Aug 15, 2021
1 parent 7d173b1 commit f59771a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/Docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
GKSwstype: nul # turn off GR's interactive plotting for notebooks
JULIA_PKG_SERVER: ''
shell: julia --color=yes --project=docs/ {0}
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Stheno"
uuid = "8188c328-b5d6-583d-959b-9690869a5511"
version = "0.7.12"
version = "0.7.13"

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

[compat]
AbstractGPs = "0.2.25, 0.3"
AbstractGPs = "0.3.9"
BlockArrays = "0.15, 0.16"
ChainRulesCore = "0.9.44, 0.10"
ChainRulesCore = "1"
FillArrays = "0.7, 0.8, 0.9, 0.10, 0.11, 0.12"
KernelFunctions = "0.9.6, 0.10"
MacroTools = "0.4, 0.5"
Expand Down
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ Stheno = "8188c328-b5d6-583d-959b-9690869a5511"
[compat]
Documenter = "0.27"
julia = "1.6"
Stheno = "0.7"
3 changes: 0 additions & 3 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Stheno = "8188c328-b5d6-583d-959b-9690869a5511"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f"

[compat]
Documenter = "0.25, 0.26, 0.27"
FiniteDifferences = "0.12"
Flux = "0.12"
TimerOutputs = "0.5"
6 changes: 3 additions & 3 deletions test/gp/gp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
x = collect(range(-1.0, 1.0; length=N))
x′ = collect(range(-1.0, 1.0; length=N′))

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

@test mean(f1, x) == AbstractGPs._map(m1, x)
@test mean(f2, x) == AbstractGPs._map(m2, x)
@test mean(f1, x) == AbstractGPs._map_meanfunction(m1, x)
@test mean(f2, x) == AbstractGPs._map_meanfunction(m2, x)

@test cov(f1, f2, x, x′) == zeros(N, N′)
@test var(f1, x) == ones(N)
Expand Down

2 comments on commit f59771a

@willtebbutt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/42929

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.7.13 -m "<description of version>" f59771a7ff1e1751c6571521535c7c22bb1ef8e6
git push origin v0.7.13

Please sign in to comment.