Skip to content

Commit 1648163

Browse files
authored
Merge pull request #49 from JuliaAI/dev
For a 0.2.0 release
2 parents 5ecb8c8 + d7f5769 commit 1648163

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
julia --project=docs -e '
108108
if ENV["BUILD_DOCS"] == "true"
109109
using Documenter: doctest
110-
using NearestNeighborModels
110+
using NearestNeighborModels, MLJBase
111111
@info "attempting to run the doctests"
112112
doctest(NearestNeighborModels)
113113
else

docs/Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
MLJBase = "a7f614a8-145f-11e9-1d2a-a57a1082229d"
4+
NearestNeighborModels = "636a865e-7cf4-491e-846c-de09b730eb36"
45
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
56

67
[compat]
78
Documenter = "^0.24"
8-
julia = "^1.0"
99
MLJBase = "^0.19"
1010
StableRNGs = "^1.0"
11+
julia = "^1.0"

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ makedocs(;
1515
"Home" => "index.md",
1616
"API" => "api.md"
1717
],
18-
doctest = true,
18+
doctest = false, # don't runt doctest as doctests are automatically run separately in ci.
1919
repo = "https://github.com/JuliaAI/NearestNeighborModels.jl/blob/{commit}{path}#L{line}",
2020
sitename = "NearestNeighborModels.jl",
2121
)

0 commit comments

Comments
 (0)