-
Notifications
You must be signed in to change notification settings - Fork 38
chore(deps): allow windows-sys 0.61 #284
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
Conversation
Pull Request Test Coverage Report for Build 19340145823Details
💛 - Coveralls |
4abf361 to
16cddf3
Compare
|
So, the MSRV jobs passed because I didn't touch the lockfile. If I bump the locked version of windows-sys, those jobs would probably fail. But a plain In fact, the only way I've found to bump the version that anstyle-query and anstyle-wincon depend on directly is to edit the version constraints to require 0.61, generate a lockfile compatible with this, and then relax the version requirement again. I've now pushed a commit doing that, to confirm that the MSRV job fails and to see how the other jobs handle it. |
|
Yeah, the windows MSRV job failed as expected. The minimal-versions job downgraded to windows-sys 0.60.2, but since it only runs on Ubuntu it doesn't actually compile against that version. |
|
Why was windows-sys bumped in the lockfile? We keep that compatible with our MSRV. |
|
I did it as a separate commit to experiment with CI, not to actually merge. |
16cddf3 to
21829e6
Compare
|
Dropped the lockfile commit. CI is green again, but none of the CI jobs actually compile windows-sys 0.61 as far as I can tell, and the rust-next job won't do it either. Any ideas how to fix that? |
Whelp, can't believe I forgot to add that to my jobs. Doing it in #285. |
|
If I run $ CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS=allow cargo updatethen I see that With #285, that should now be done in CI. |
|
Also have #286 for running more jobs on Windows |
|
Oops, I must have done something wrong locally and I definitely misremembered what the config value is called. Thanks! |
21829e6 to
829ebd7
Compare
Closes #282