You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The reason will be displayed to describe this comment to others. Learn more.
It looks like this is breaking the current tests.
Your new version of AbbreviatedTypes.jl keeps parameters like τᵣ₀ within the namespace of the package. Many of the tests (which reside outside the namespace) use these constants without referencing the proper namespace. eg. see here:
const one⁻⁻, one⁺⁺ =0.9, 1.1# (scale factor less than 1, scale factor greater than 1)
Unfortunately we can't use the older version of AbbreviatedTypes.jl because the macro introduced here (@define_types_with) is only in the new version of AbbreviatedTypes.jl.
So one needs to either update all the tests with the proper namespace, or revert this commit and use an older version of AbbreviatedTypes.jl.
9875b20
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
9875b20
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request updated: JuliaRegistries/General/72412
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:
9875b20
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like this is breaking the current tests.
Your new version of
AbbreviatedTypes.jl
keeps parameters likeτᵣ₀
within the namespace of the package. Many of the tests (which reside outside the namespace) use these constants without referencing the proper namespace. eg. see here:GeometryPrimitives.jl/test/runtests.jl
Lines 8 to 10 in 9576f67
Unfortunately we can't use the older version of
AbbreviatedTypes.jl
because the macro introduced here (@define_types_with
) is only in the new version ofAbbreviatedTypes.jl
.So one needs to either update all the tests with the proper namespace, or revert this commit and use an older version of
AbbreviatedTypes.jl
.(cc @stevengj )