-
Notifications
You must be signed in to change notification settings - Fork 190
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
Upgrade to Rust 1.62.0 #1825
Upgrade to Rust 1.62.0 #1825
Conversation
pyo3 = "0.16.5" | ||
pyo3-asyncio = { version = "0.16.0", features = ["tokio-runtime"] } | ||
pyo3 = "0.17.0" | ||
pyo3-asyncio = { version = "0.17.0", features = ["tokio-runtime"] } |
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 was necessary to fix a bunch of noisy reborrow lints - is upgrading an issue? Everything compiles and all tests are passing.
@crisidev @unexge
https://pyo3.rs/v0.17.0/migration.html#from-016-to-017
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
A new generated diff is ready to view.
A new doc preview is ready to view. |
@@ -41,7 +41,7 @@ pub enum OsFamily { | |||
/// is set to a specific value. This macro simplifies checking the current OS family. | |||
/// | |||
/// Usage: | |||
/// ```rust | |||
/// ```ignore |
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.
See e68dfb7 for the reason on the ignore
here.
rust
is redundant and can be removed.
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.
We may already discuss this in some place. Do we want to set rust-version
in Cargo.toml?
@weihanglo Good idea, but I'll do it in a different PR. I'd rather not add a diff of ~50 |
A new generated diff is ready to view.
A new doc preview is ready to view. |
A new generated diff is ready to view.
A new doc preview is ready to view. |
Motivation and Context
Upgrade MSRV to Rust 1.62.0.
Description
We are upgrading the Rust version in our various configs and fixing all relevant Clippy lints.
In the process of upgrading Rust, we had to upgrade
pyo3
andpyo3-asyncio
from0.16
to0.17
.Checklist
CHANGELOG.next.toml
if I made changes to the smithy-rs codegen or runtime cratesCHANGELOG.next.toml
if I made changes to the AWS SDK, generated SDK code, or SDK runtime cratesBy submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.