-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Free threaded support #12555
base: main
Are you sure you want to change the base?
Free threaded support #12555
Conversation
I guess because I'm not using the |
@@ -110,6 +110,62 @@ impl PKCS7PaddingContext { | |||
} | |||
} | |||
|
|||
#[pyo3::pyclass] |
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.
For this migration, this can go into its own PR -- it can be merged without any of the rest of the freethreading stuff.
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'll cherrypick the Rust ports and make them their own PRs and keep the free-threading-specific stuff in this PR.
Great
…On Thu, Mar 6, 2025 at 5:03 PM Nathan Goldbaum ***@***.***> wrote:
@ngoldbaum commented on this pull request.
________________________________
In src/rust/src/padding.rs:
> @@ -110,6 +110,62 @@ impl PKCS7PaddingContext {
}
}
+#[pyo3::pyclass]
I'll cherrypick the Rust ports and make them their own PRs and keep the free-threading-specific stuff in this PR.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
--
All that is necessary for evil to succeed is for good people to do nothing.
|
e0636ce
to
3028574
Compare
Towards fixing #12489.
Adds free-threaded CI using a hacky workaround to avoid building against the version of cffi on PyPI.
xref #12590