doc versions fix #10
Annotations
1 error and 10 warnings
Julia 1.0 - ubuntu-latest - x64 - push
Process completed with exit code 1.
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@setup` block in src/index.md
```@setup
using GLMakie
```
exception =
LoadError: Failed to precompile GLMakie [e9467ef8-e4e7-5192-8a1a-b1aee30e663a] to "/home/runner/.julia/compiled/v1.9/GLMakie/jl_PtCFEG".
in expression starting at string:1
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
undefined binding 'ComplexPlots.zplot' in `@docs` block in src/index.md:26-29
```@docs
zplot
artist
```
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@setup` block in src/makie.md
```@setup makie
using GLMakie
update_theme!(linewidth=3, Axis=(autolimitaspect=1,))
```
exception =
LoadError: Failed to precompile GLMakie [e9467ef8-e4e7-5192-8a1a-b1aee30e663a] to "/home/runner/.julia/compiled/v1.9/GLMakie/jl_2puzDT".
in expression starting at string:1
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/makie.md:4-6
```@example makie
update_theme!(linewidth=3, Axis=(autolimitaspect=1,))
```
value = UndefVarError: `update_theme!` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/makie.md:16-22
```@example makie
using ComplexPlots, GLMakie
z = [complex(cospi(t), 0.4sinpi(t)) for t in (0:400)/200]
lines(z)
scatter!(1 ./ z, marker=:circle, markersize=8, color=:black)
save("makie_points.png", current_figure()); nothing # hide
```
value = Failed to precompile GLMakie [e9467ef8-e4e7-5192-8a1a-b1aee30e663a] to "/home/runner/.julia/compiled/v1.9/GLMakie/jl_1BKLTO".
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/makie.md:27-30
```@example makie
sphereplot(z)
save("makie_sphere.png", current_figure()); nothing # hide
```
value = UndefVarError: `sphereplot` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
undefined binding 'sphereplot' in `@docs` block in src/makie.md:25-27
```@docs
sphereplot
```
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/makie.md:43-46
```@example makie
zplot(z -> (z^3 - 1) / (3im - z)^2)
save("makie_zplot.png", current_figure()); nothing # hide
```
value = UndefVarError: `zplot` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/makie.md:51-54
```@example makie
zplot(tanh, [-5, 5], [-5, 5])
save("makie_tanh.png", current_figure()); nothing # hide
```
value = UndefVarError: `zplot` not defined
|
Documentation:
../../../.julia/packages/Documenter/bYYzK/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/makie.md:59-62
```@example makie
zplot(z -> log((1 + z) / (1im - z)), [-2, 2], [-2, 2], 1000)
save("makie_log.png", current_figure()); nothing # hide
```
value = UndefVarError: `zplot` not defined
|