How can I conditionally execute some code, depending on what julia version it is running on?
Specifically I test for type stability using @inferred.
For some code this succeeds in Julia 1.7 but fails in Julia 1.6. Instead of removing the @inferred entirely, I would like to test the Julia version and include the code line with @inferred only if running on version >=1.7.
(The reason for the @static is so that this check occurs at compile time, which is sometimes important, e.g. if you want to ccall a function that doesn’t exist before a certain version then you want to strip it out before compilation.)
You should almost never have to look inside the fields of a VersionNumber (== typeof(VERSION)) object. Just do comparisons with v"..." strings as above. See also the manual on version number literals.
(I noticed that the VersionNumber docs don’t talk about comparisons, so I created a PR improving them: julia#43893.)