I’ve setup continuous integration for several packages that I’ve written. For a new package, I’m getting an error that I can’t debug (see image). (Here is the new packjage: GitHub - glwhart/Spacey.jl: Spacegroup finder utility for crystals (useful for density functional theory codes and computational materials science))
The new package requires MinkowskiReduction.jl
(a registered package that I wrote). The error message seems to suggest that all versions of Minkowski reduction are incompatible with the Julia versions compatible with the new package (but it works just fine by itself, including the CI testing).
MinkowskiReduction.jl
is compatible (according to my Project.toml
) with julia v1.2 and above. And that is the version of julia in my project.toml for the new package as well. Perhaps I’m misreading the error messages. Can anyone help me understand what is wrong?
Project.toml of new package:
...
[compat]
julia = "1.2"
Project.toml of MinkowskiReduction.jl
package
...
[compat]
julia = "1.2"
...