Conversation
|
It looks like Bool still doesn't work on Julia 1.6. Do you have an idea how to fix it or should we consider bumping the minimal version to 1.9? |
Im thinking it might have to do with the fact that ONNXRunTime 0.3.0 also doesnt have a Bool datatype which makes me think, unless we can patch an earlier version of ONNXRunTime for 1.6 (Long term support is pretty important) then we might be out of luck. |
But the current LTS version is 1.10, no? |
Huh! look at that. I like it; what steps need to be done to bump minimal version. |
|
You need to change two lines of code in Project.toml:
It may be sufficient to only change the first line, but I'd still update the ONNX.jl version as well to indicate that something important happened to the package. I'd also change test matrix in the Github job from this: version:
- '1.6'
- '1.9'to this: version:
- '1.10'
- '1'
|
|
I see the changes in |
|
Let me know if I did the new Umlaut compat correctly. I see that umlaut 0.7 is needed for 1.10 onward. But, did I not need to remove all the prior versions in the Project.toml not for the tests? |
|
Umlaut 0.7 fixes names of some internal Julia objects introduced in recent versions of the language, so using it on Julia 1.10+ is totally justified. The PR looks good to me. Thanks! |
Adding support for the And layer of the ONNX
PR Checklist