-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add compat for Aqua and stdlibs #341
Conversation
Hi @Sbozzolo, thanks a lot for opening this PR and for the contribution, and sorry for the time to respond to it. Your PR is very very timely. In relation to #339 I've been checking Aqua, so I will leave a few suggestions to add which simply exploit further Aqua. I hope this afternoon I'll send you these suggestions. |
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.
Thanks a lot for your PR. I left one single comment (which actualy touches both files), to include further Aqua checks. Once that is implemented, I will be happy to merge it (and we should probably tag a new (patch?) version.
TaylorSeries.jl did not specify a compat for Aqua. Aqua 0.8 introduces some breaking changes, such as renaming test_piracy to test_piracies, leading to broken test if one has a recent version of Aqua in their environment. I added a compat for Aqua. New versions of Aqua also check for compats for standard libraries (which will be a requirement to publish the package), so I added those as well.
Tests pass, so I'm merging. Thanks a lot @Sbozzolo !! |
I'd be personally in favor of bumping the patch version 😄 |
Me too... hold me on just a couple of days; I'm addressing #339, and noticed that some ambiguities may occur. (If this takes too long, I'll simply tag the new patch version.) |
TaylorSeries.jl did not specify a compat for Aqua. Aqua 0.8 introduces some breaking changes, such as renaming
test_piracy
totest_piracies
, leading to broken test if one has a recent version of Aqua in their environment.I added a compat for Aqua. New versions of Aqua also check for compats for standard libraries (which will be a requirement to publish the package), so I added those as well.