Eric Hanson
Eric Hanson
https://github.com/ericphanson/ExplicitImports.jl/blob/f4d64b0853f9f59befa219d2b52745ee65a76053/src/ExplicitImports.jl#L311-L320 Looks like we only catch UndefVarError. If I start julia with `--depwarn=error`, I get ```julia julia> f() = 1 f (generic function with 1 method) julia> Base.@deprecate f() println()...
Searching GAPTypes brought me to https://discourse.julialang.org/t/swizzling-the-super-type-of-a-foreign-julia-type-or-how-evil-must-i-be/33733 by @fingolfin
Ah, https://github.com/JuliaRegistries/General/issues/19033#issuecomment-873333386 has a bunch of authors: @moelf for BigG, @PetrKryslUCSD for MeshFinder, @lucianolorenti for Estapir, and @slmcbane for MirroredArrayViews
I believe these particular repos have all been deleted, so they would need to be reconstituted
from Slack, it sounds like from the copyright point of view, it might be OK if the authors just write something in this issue like "I waive copyright to the...
I've been using LegolasFlux which uses Arrow to serialize the weights (incl non-trainable parameters like BatchNorm means/variances). It is a pretty light package, just traversing through the model to collect...
I don't think this issue is a julia-version specific thing. The problem is the test itself. If precompilation fails for any reason, then the `has_persistent_tasks` test fails. Precompilation failing is...
hm, what does that imply?
Hm... ```julia julia> expr = @macroexpand @check 1 .== 2 quote $(Expr(:meta, :begin_optional, ArgCheck.LabelArgCheck())) begin var"#22###calle#236" = (.==) var"#23###arg#234" = 1 var"#24###arg#235" = 2 if var"#22###calle#236"(var"#23###arg#234", var"#24###arg#235") ArgCheck.nothing else ArgCheck.throw_check_error(ArgCheck.CallErrorInfo($(QuoteNode(:(1...
Is there a way to try the integration tests without merging?