-
Notifications
You must be signed in to change notification settings - Fork 53
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
Open
dlfivefifty
wants to merge
11
commits into
master
Choose a base branch
from
Julia-v1.10
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
7f7350b
Require Julia v1.10 (LTS)
dlfivefifty 64dbdd8
Update .github/workflows/CI.yml
dlfivefifty 8a2fb50
Merge branch 'master' into Julia-v1.10
dlfivefifty 8db2260
Merge branch 'master' into Julia-v1.10
stevengj 0cede8e
Remove unnecessary `VERSION` checks
devmotion bb9b987
Clean GHA workflow
devmotion 1db4402
Remove workaround for Preferences in Julia 1.6
devmotion c3e8f02
Update Cirrus config
devmotion 6ec29e9
Add test dependencies
devmotion 5d7f0de
Add missing dependencies
devmotion 23804f7
Fix CI?
devmotion File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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
|
||||||
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 contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 👍