Skip to content

Commit f63f479

Browse files
authored
Update versions (#122)
* Update versions * fix make.jl * change min julia version * remove size threshold
1 parent e87ded2 commit f63f479

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/CI.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.6'
23+
- '1.8'
2424
- '1'
2525
- 'nightly'
2626
os:

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "AugmentedGPLikelihoods"
22
uuid = "4689c64d-1a23-4d3c-ad26-1c612d54a282"
33
authors = ["Théo Galy-Fajou <[email protected]> and contributors"]
4-
version = "0.4.17"
4+
version = "0.4.18"
55

66
[deps]
77
ArraysOfArrays = "65a8f2f4-9b39-5baf-92e2-a9cc46fdf018"
@@ -26,12 +26,12 @@ ArraysOfArrays = "0.5, 0.6"
2626
ChainRulesCore = "1"
2727
Distributions = "0.25"
2828
GPLikelihoods = "0.3, 0.4"
29-
IrrationalConstants = "0.1"
29+
IrrationalConstants = "0.1, 0.2"
3030
LogExpFunctions = "0.3"
31-
MeasureBase = "0.9, 0.10, 0.11, 0.12, 0.13"
32-
MeasureTheory = "0.14, 0.15, 0.16, 0.17"
31+
MeasureBase = "0.13, 0.14"
32+
MeasureTheory = "0.16 - 0.18"
3333
Reexport = "1"
3434
SpecialFunctions = "1, 2"
3535
SplitApplyCombine = "1"
3636
TupleVectors = "0.1, 0.2"
37-
julia = "1.6"
37+
julia = "1.8"

docs/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
99
[compat]
1010
AugmentedGPLikelihoods = "0.4"
1111
Distributions = "0.25"
12-
Documenter = "0.27"
13-
DocumenterCitations = "0.2"
12+
Documenter = "0.27, 1"
13+
DocumenterCitations = "0.2, 1"
1414
Literate = "2"
1515
Plots = "1"

docs/make.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,17 @@ DocMeta.setdocmeta!(
1717

1818
bib = CitationBibliography(joinpath(@__DIR__, "references.bib"))
1919

20-
makedocs(
21-
bib;
20+
makedocs(;
2221
modules=[AugmentedGPLikelihoods],
22+
plugins=[bib],
2323
authors="Théo Galy-Fajou <[email protected]> and contributors",
2424
repo="https://github.com/JuliaGaussianProcesses/AugmentedGPLikelihoods.jl/blob/{commit}{path}#{line}",
2525
sitename="AugmentedGPLikelihoods.jl",
2626
format=Documenter.HTML(;
2727
prettyurls=get(ENV, "CI", "false") == "true",
2828
canonical="https://JuliaGaussianProcesses.github.io/AugmentedGPLikelihoods.jl",
2929
assets=String[],
30+
size_threshold=nothing,
3031
),
3132
pages=[
3233
"Home" => "index.md",
@@ -37,7 +38,6 @@ makedocs(
3738
"Misc" => "misc.md",
3839
"References" => "references.md",
3940
],
40-
strict=true,
4141
)
4242

4343
deploydocs(;

test/Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ TupleVectors = "615932cf-77b6-4358-adcd-5b7eba981d7e"
1212

1313
[compat]
1414
Distributions = "0.25"
15-
GPLikelihoods = "0.3, 0.4"
15+
GPLikelihoods = "0.4"
1616
IrrationalConstants = "0.1"
1717
LogExpFunctions = "0.3"
18-
MeasureBase = "0.9, 0.10, 0.11, 0.12, 0.13"
18+
MeasureBase = "0.13, 0.14"
1919
SpecialFunctions = "2"
20-
StatsFuns = "0.9, 1"
21-
TupleVectors = "0.1, 0.2"
20+
StatsFuns = "1"
21+
TupleVectors = "0.2"

0 commit comments

Comments
 (0)