Fix for using IJulia with Julia 1.11.1 and the new Memory array types. #131
Annotations
3 errors, 4 warnings, and 1 notice
docdeploy:
../../../.julia/packages/Documenter/C1XEF/src/utilities/utilities.jl#L44
failed to run `@example` block in src/examples/finance.md:18-32
```@example finance
function ohlc2()
function get_ohlc(ticker; kwargs...)
res = HTTP.get("https://www.quandl.com/api/v3/datasets/WIKI/$(ticker)/data.csv?start_date=2017-01-01")
df = DataFrame(CSV.File(res.body))
ohlc(df, x=:Date, open=:Open, high=:High, low=:Low, close=:Close; kwargs...)
end
p1 = plot(get_ohlc("AAPL", name="Apple"), Layout(title="Apple"))
p2 = plot(get_ohlc("GOOG", name="Google"), Layout(title="Google"))
[p1 p2]
end
ohlc2()
```
exception =
HTTP.Exceptions.StatusError(410, "GET", "/api/v3/datasets/WIKI/AAPL/data.csv?start_date=2017-01-01", HTTP.Messages.Response:
"""
HTTP/1.1 410 Gone
server: istio-envoy
date: Tue, 05 Nov 2024 14:26:20 GMT
content-type: text/plain; charset=utf-8
x-ratelimit-limit: 50
x-ratelimit-remaining: 49
set-cookie: ******
x-request-id: 57eff81d-36ed-9580-97af-8838806a9c57
x-runtime: 0.004067
x-envoy-upstream-service-time: 17
allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, PATCH
transfer-encoding: chunked
Set-Cookie: ******
Set-Cookie: ******
Set-Cookie: ******
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-CDN: Imperva
Content-Encoding: gzip
X-Iinfo: 6-13511948-13511976 NNYN CT(70 70 0) RT(1730816778955 553) q(0 0 1 0) r(2 2) U11
Resource is no longer available. Path: /api/v3/datasets/WIKI/AAPL/data.csv""")
Stacktrace:
[1] (::HTTP.ConnectionRequest.var"#connections#4"{HTTP.ConnectionRequest.var"#connections#1#5"{HTTP.TimeoutRequest.var"#timeouts#3"{HTTP.TimeoutRequest.var"#timeouts#1#4"{HTTP.ExceptionRequest.var"#exceptions#2"{HTTP.ExceptionRequest.var"#exceptions#1#3"{typeof(HTTP.StreamRequest.streamlayer)}}}}}})(req::HTTP.Messages.Request; proxy::Nothing, socket_type::Type, socket_type_tls::Nothing, readtimeout::Int64, connect_timeout::Int64, logerrors::Bool, logtag::Nothing, closeimmediately::Bool, kw::@kwargs{iofunction::Nothing, decompress::Nothing, verbose::Int64})
@ HTTP.ConnectionRequest ~/.julia/packages/HTTP/y3eEt/src/clientlayers/ConnectionRequest.jl:144
[2] connections
@ ~/.julia/packages/HTTP/y3eEt/src/clientlayers/ConnectionRequest.jl:60 [inlined]
[3] (::Base.var"#106#108"{Base.var"#106#107#109"{ExponentialBackOff, HTTP.RetryRequest.var"#2#5"{Int64, typeof(HTTP.RetryRequest.FALSE), HTTP.Messages.Request, Base.RefValue{Int64}}, HTTP.ConnectionRequest.var"#connections#4"{HTTP.ConnectionRequest.var"#connections#1#5"{HTTP.TimeoutRequest.var"#timeouts#3"{HTTP.TimeoutRequest.var"#timeouts#1#4"{HTTP.ExceptionRequest.var"#exceptions#2"{HTTP.ExceptionRequest.var"#exceptions#1#3"{typeof(HTTP.StreamRequest.streamlayer)}}}}}}}})(args::HTTP.Messages.Request; kwargs::@kwargs{iofunction::Nothing, decompress::Nothing, verbose::Int64})
@ Base ./error.jl:300
[4] (::HTTP.RetryRequest.var"#manageretries#3"{HTTP.RetryRequest.var"#manageretries#1#4"{HTTP.ConnectionRequest.var"#connections#4"{HTTP.ConnectionRequest.var"#connections#1#5"{HTTP.TimeoutRequest.var"#timeouts#3"{HTTP.TimeoutRequest.var"#timeouts#1#4"{HTTP.ExceptionRequest.var"#exceptions#2"{HTTP.ExceptionRequest.var"#exceptions#1#3"{typeof(HTTP.StreamRequest.streamlayer)}}}}}}}})(req::HTTP.Messages.Request; retry::Bool, retries::Int64, retry_delays::ExponentialBackOff, retry_check::Function, retry_non_idempotent::Bool, kw::@kwargs{iofunction::Nothing, decompress::Nothing, verbose::Int64})
@ HTTP.RetryRequest ~/.julia/packages/HTTP/y3eEt/src/clientlayers/RetryRequest.jl:75
[5] manageretries
@ ~/.julia/packages/HTTP/y3eEt/src/clientlayers/RetryRequest.jl:30 [inlined]
[6] (::HTTP.CookieRequest.var"#managecookies#4"{HTTP.CookieRequest.var"#managecookies#1#5"{HTTP.RetryRequest.var"#manageretries#3"{HTTP.RetryRequest.var"#manageretries#1#4"{HTTP.ConnectionRequest.var"#connections#4"{HTTP.ConnectionRequest.var"#connections#1#5"{HTTP.TimeoutRequest.var"#timeouts#3"{HTTP.TimeoutRequest.var"#timeouts#1#4"{HTTP.ExceptionRequ
|
docdeploy:
../../../.julia/packages/Documenter/C1XEF/src/utilities/utilities.jl#L44
failed to run `@example` block in src/examples/finance.md:45-59
```@example finance
function candlestick2()
function get_candlestick(ticker; kwargs...)
res = HTTP.get("https://www.quandl.com/api/v3/datasets/WIKI/$(ticker)/data.csv?start_date=2017-01-01")
df = DataFrame(CSV.File(res.body))
candlestick(df, x=:Date, open=:Open, high=:High, low=:Low, close=:Close; kwargs...)
end
p1 = plot(get_candlestick("AAPL", name="Apple"), Layout(title="Apple"))
p2 = plot(get_candlestick("GOOG", name="Google"), Layout(title="Google"))
[p1 p2]
end
candlestick2()
```
exception =
HTTP.Exceptions.StatusError(410, "GET", "/api/v3/datasets/WIKI/AAPL/data.csv?start_date=2017-01-01", HTTP.Messages.Response:
"""
HTTP/1.1 410 Gone
server: istio-envoy
date: Tue, 05 Nov 2024 14:26:22 GMT
content-type: text/plain; charset=utf-8
x-ratelimit-limit: 50
x-ratelimit-remaining: 48
set-cookie: ******
x-request-id: 39c1dce5-6767-9c38-9a8e-cd4fe73c58f2
x-runtime: 0.004106
x-envoy-upstream-service-time: 19
allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, PATCH
transfer-encoding: chunked
Set-Cookie: ******
Set-Cookie: ******
Set-Cookie: ******
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-CDN: Imperva
Content-Encoding: gzip
X-Iinfo: 12-41191273-41191274 NNYN CT(70 71 0) RT(1730816782331 5) q(0 0 1 0) r(2 2) U11
Resource is no longer available. Path: /api/v3/datasets/WIKI/AAPL/data.csv""")
Stacktrace:
[1] (::HTTP.ConnectionRequest.var"#connections#4"{HTTP.ConnectionRequest.var"#connections#1#5"{HTTP.TimeoutRequest.var"#timeouts#3"{HTTP.TimeoutRequest.var"#timeouts#1#4"{HTTP.ExceptionRequest.var"#exceptions#2"{HTTP.ExceptionRequest.var"#exceptions#1#3"{typeof(HTTP.StreamRequest.streamlayer)}}}}}})(req::HTTP.Messages.Request; proxy::Nothing, socket_type::Type, socket_type_tls::Nothing, readtimeout::Int64, connect_timeout::Int64, logerrors::Bool, logtag::Nothing, closeimmediately::Bool, kw::@kwargs{iofunction::Nothing, decompress::Nothing, verbose::Int64})
@ HTTP.ConnectionRequest ~/.julia/packages/HTTP/y3eEt/src/clientlayers/ConnectionRequest.jl:144
[2] connections
@ ~/.julia/packages/HTTP/y3eEt/src/clientlayers/ConnectionRequest.jl:60 [inlined]
[3] (::Base.var"#106#108"{Base.var"#106#107#109"{ExponentialBackOff, HTTP.RetryRequest.var"#2#5"{Int64, typeof(HTTP.RetryRequest.FALSE), HTTP.Messages.Request, Base.RefValue{Int64}}, HTTP.ConnectionRequest.var"#connections#4"{HTTP.ConnectionRequest.var"#connections#1#5"{HTTP.TimeoutRequest.var"#timeouts#3"{HTTP.TimeoutRequest.var"#timeouts#1#4"{HTTP.ExceptionRequest.var"#exceptions#2"{HTTP.ExceptionRequest.var"#exceptions#1#3"{typeof(HTTP.StreamRequest.streamlayer)}}}}}}}})(args::HTTP.Messages.Request; kwargs::@kwargs{iofunction::Nothing, decompress::Nothing, verbose::Int64})
@ Base ./error.jl:300
[4] (::HTTP.RetryRequest.var"#manageretries#3"{HTTP.RetryRequest.var"#manageretries#1#4"{HTTP.ConnectionRequest.var"#connections#4"{HTTP.ConnectionRequest.var"#connections#1#5"{HTTP.TimeoutRequest.var"#timeouts#3"{HTTP.TimeoutRequest.var"#timeouts#1#4"{HTTP.ExceptionRequest.var"#exceptions#2"{HTTP.ExceptionRequest.var"#exceptions#1#3"{typeof(HTTP.StreamRequest.streamlayer)}}}}}}}})(req::HTTP.Messages.Request; retry::Bool, retries::Int64, retry_delays::ExponentialBackOff, retry_check::Function, retry_non_idempotent::Bool, kw::@kwargs{iofunction::Nothing, decompress::Nothing, verbose::Int64})
@ HTTP.RetryRequest ~/.julia/packages/HTTP/y3eEt/src/clientlayers/RetryRequest.jl:75
[5] manageretries
@ ~/.julia/packages/HTTP/y3eEt/src/clientlayers/RetryRequest.jl:30 [inlined]
[6] (::HTTP.CookieRequest.var"#managecookies#4"{HTTP.CookieRequest.var"#managecookies#1#5"{HTTP.RetryRequest.var"#manageretries#3"{HTTP.RetryRequest.var"#manageretries#1#4"{HTTP.ConnectionRequest.var"#connections#4"{HTTP.ConnectionRequest.var"#connections#1#5"{HTTP.TimeoutRequest.var"#timeouts#3"{HTTP.TimeoutRequ
|
docdeploy
Process completed with exit code 1.
|
docdeploy:
../../../.julia/packages/Documenter/C1XEF/src/docchecks.jl#L233
linkcheck 'https://plot.ly/javascript' status: 308, redirects to 'https://plot.ly/javascript/'
|
docdeploy:
../../../.julia/packages/Documenter/C1XEF/src/docchecks.jl#L233
linkcheck 'https://community.plotly.com/c/graphing-libraries/julia/23' status: 301, redirects to 'https://community.plotly.com/c/plotly-r-matlab-julia-net/julia/23'
|
docdeploy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
docdeploy
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v2. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
[julia-buildpkg] Caching of the julia depot was not detected
Consider using `julia-actions/cache` to speed up runs https://github.com/julia-actions/cache. To ignore, set input `ignore-no-cache: true`
|