You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> versioninfo()
Julia Version 1.12.0-DEV.814
Commit c3883824b00 (2024-07-04 16:05 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: 16 × AMD Ryzen 7 7800X3D 8-Core Processor
WORD_SIZE: 64
LLVM: libLLVM-17.0.6 (ORCJIT, znver4)
Threads: 1 default, 0 interactive, 1 GC (on 16 virtual cores)
Environment:
JULIA_DEPOT_PATH = /tmp/new-depot
Here is a MWE:
First set up a stacked environment where the global environment has an older version of TranscodingStreams
JULIA_DEPOT_PATH=/tmp/new-depot julia +nightly -e ' using Pkg pkg"add [email protected]" pkg"activate @stacked"; pkg"add [email protected] Test Random" '
Then run:
JULIA_DEBUG=loading JULIA_DEPOT_PATH=/tmp/new-depot julia +nightly -e ' using Pkg using TranscodingStreams pkg"activate @stacked"; using Test, Random '
This results in the error:
ERROR: LoadError: UndefVarError: `test_roundtrip_seekstart` not defined in `TranscodingStreams`
Here is a MWE:
First set up a stacked environment where the global environment has an older version of
TranscodingStreams
Then run:
This results in the error:
test_roundtrip_seekstart
was added inTranscodingStreams
v0.10.9. It looks like v0.10.9 of theTranscodingStreams
TestExt
extension is being used together withTranscodingStreams
v0.10.8.Full error
Ref: JuliaIO/TranscodingStreams.jl#223
The text was updated successfully, but these errors were encountered: