JuliaData / StructTypes.jl

Abstract definitions and convenience methods for describing, processing, and constructing Julia objects
https://juliadata.github.io/StructTypes.jl/stable/
MIT License
80 stars 22 forks source link

New types being "public" in Base causes tests to fail in 1.11. #102

Open KristofferC opened 8 months ago

KristofferC commented 8 months ago
# 1.11
julia> :UUID in propertynames(Base)
true

# 1.10
julia> :UUID in propertynames(Base)
false

Causes this test to fail:

https://github.com/JuliaData/StructTypes.jl/blob/47c4691d9b5f72455566658a50d950bfb1522a75/test/runtests.jl#L263-L281