Skip to content
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 entries for dependencies #321

Closed
wants to merge 1 commit into from

Conversation

carstenbauer
Copy link
Contributor

This PR adds compat entries for all dependencies in line with the general guidelines of Julia auto-merge system for the General registry.

Do only merge after #300 has been merged. Afterwards tag a new release (patch version number increment). The auto-merge should work then.

Background / Why this is important:

See https://discourse.julialang.org/t/please-be-mindful-of-version-bounds-and-semantic-versioning-when-tagging-your-packages/30708/135.

Due to the changes in AbstractFFTs.jl (JuliaMath/AbstractFFTs.jl#26) we are in a broken state until #300 gets merged. See for example the complaints here.

This could and should have been avoided by [compat] entries which would have set effective upper bounds on FFTW.jl. This way, we would have had the time to merge #300 whenever we want and then bump the FFTW version in [compat]. However, those compat entries didn't exist. This PR changes that for the after-#300 time.

@carstenbauer
Copy link
Contributor Author

The tests will only pass after #300 has landed.

@@ -12,7 +12,11 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
Polynomials = ">= 0.1.0"
Polynomials = "0.6.0"
FFTW = "1.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This won't actually restrict AbstractFFTs, since FFTW permits any AbstractFFTs >= 0.3.

@@ -12,7 +12,11 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
Polynomials = ">= 0.1.0"
Polynomials = "0.6.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there an issue with using other Polynomials versions in the 0.6.x series (if any exist)? If not, I think this should be

Suggested change
Polynomials = "0.6.0"
Polynomials = "0.6"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants