-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test documentation on latest Julia release #139
Conversation
Is there somewhere other than the Documenter docs that I can get info on this change? Just want to make sure I can see the whole picture because if there are new best practices, then the Documenter plugin should probably be updated too. |
This is actually a Julia 1.3 requirement rather than a Documenter requirement. I'm not sure the PR it's from but it would be from the Pkg.jl repo. $ git checkout ab9949a
$ julia-1.3 --project=docs/ docs/make.jl
ERROR: LoadError: ArgumentError: Package PkgTemplates not found in current path:
- Run `import Pkg; Pkg.add("PkgTemplates")` to install the PkgTemplates package.
Stacktrace:
[1] require(::Module, ::Symbol) at ./loading.jl:887
[2] include at ./boot.jl:328 [inlined]
[3] include_relative(::Module, ::String) at ./loading.jl:1105
[4] include(::Module, ::String) at ./Base.jl:31
[5] exec_options(::Base.JLOptions) at ./client.jl:287
[6] _start() at ./client.jl:460
in expression starting at /Users/omus/.julia/dev/PkgTemplates/docs/make.jl:2 |
Codecov Report
@@ Coverage Diff @@
## master #139 +/- ##
=======================================
Coverage 93.61% 93.61%
=======================================
Files 17 17
Lines 329 329
=======================================
Hits 308 308
Misses 21 21 Continue to review full report at Codecov.
|
Rebased changes. |
Seems good to me. Is this (adding the package to its own |
Yes;
Yep. Using the ERROR: LoadError: ArgumentError: Package Foo not found in current path:
- Run `import Pkg; Pkg.add("Foo")` to install the Foo package. (I don't think this ever worked) |
Unfortunately using a |
Alright I'll merge this and open a new issue to mention that we should probably update the Documenter plugin. |
I just noticed that PkgTemplates wasn't included in the docs/Project.toml which is required in Julia 1.3.