-
Notifications
You must be signed in to change notification settings - Fork 152
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
Fix more Sendable
warnings and flaky test
#281
Conversation
dependencies: ["_CAsyncSequenceValidationSupport", "AsyncAlgorithms"]), | ||
dependencies: ["_CAsyncSequenceValidationSupport", "AsyncAlgorithms"], | ||
swiftSettings: [ | ||
.enableExperimentalFeature("StrictConcurrency=complete"), |
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.
❤️ perfection!
@@ -0,0 +1,51 @@ | |||
// swift-tools-version: 5.6 |
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.
should this be 5.7 here?
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.
This can be 5.6 since we don’t use any 5.7 toolchain feature in here. The name of the file is the important part.
[email protected]
Outdated
@@ -0,0 +1,51 @@ | |||
// swift-tools-version: 5.6 |
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.
The @swift-5.6
suffix is canonical?
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.
What do you mean with canonical? SPM used these suffixes to identify what manifest to pick for a given swift version
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.
ah, yea I did not realize that swiftpm uses those suffixes, seems reasonable then
# Motivation We still had some `Sendable` warnings left under strict Concurrency checking. # Modification This PR fixes a bunch of `Sendable` warnings but we still have some left in the validation tests. Additionally, I fixed a flaky test.
Motivation
We still had some
Sendable
warnings left under strict Concurrency checking.Modification
This PR fixes a bunch of
Sendable
warnings but we still have some left in the validation tests. Additionally, I fixed a flaky test.