-
Notifications
You must be signed in to change notification settings - Fork 54
Require Julia v1.10 (LTS) #312
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
Changes from all commits
7f7350b
64dbdd8
8a2fb50
8db2260
0cede8e
bb9b987
1db4402
c3e8f02
6ec29e9
5d7f0de
23804f7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,6 +1,6 @@ | ||||||
name = "FFTW" | ||||||
uuid = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" | ||||||
version = "1.9.0" | ||||||
version = "1.10.0-dev" | ||||||
|
||||||
[deps] | ||||||
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c" | ||||||
|
@@ -12,9 +12,18 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69" | |||||
|
||||||
[compat] | ||||||
AbstractFFTs = "1.5" | ||||||
Aqua = "0.8" | ||||||
FFTW_jll = "3.3.9" | ||||||
LinearAlgebra = "<0.0.1, 1" | ||||||
LinearAlgebra = "1" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is https://discourse.julialang.org/t/psa-compat-requirements-in-the-general-registry-are-changing/104958#update-november-9th-2023-2 still the recommended approach? Then this should be changed back to
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That PSA says only to do that for packages that support < Julia v1.4, which this does not There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's what the PSA said to do on 2nd November (https://discourse.julialang.org/t/psa-compat-requirements-in-the-general-registry-are-changing/104958#update-november-2nd-2023-how-do-i-determine-what-the-compat-entry-should-be-for-a-stdlib-3) but in the latest update on 9th November (https://discourse.julialang.org/t/psa-compat-requirements-in-the-general-registry-are-changing/104958#update-november-9th-2023-2) it seems to recommend this approach generally, without any specific lower or upper bounds on the Julia version. |
||||||
MKL_jll = "2019.0.117, 2020, 2021, 2022, 2023, 2024, 2025" | ||||||
Preferences = "1.2" | ||||||
Reexport = "0.2, 1.0" | ||||||
julia = "1.6" | ||||||
Test = "<0.0.1, 1" | ||||||
julia = "1.10" | ||||||
|
||||||
[extras] | ||||||
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" | ||||||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||||||
|
||||||
[targets] | ||||||
test = ["Aqua", "Test"] |
This file was deleted.
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.
I didn't realize we could do this. So this automatically tests on the minimum-supported version from Project.toml?
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.
Yes 👍