-
Notifications
You must be signed in to change notification settings - Fork 816
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
Testing ABI3 wheels to reduce number of wheels #1674
Conversation
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
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.
LG, we can try a RC for that matter
@@ -16,7 +16,7 @@ jobs: | |||
runs-on: windows-latest | |||
strategy: | |||
matrix: | |||
python: ["3.7", "3.8", "3.9", "3.10"] | |||
python: ["3.9", "3.10", "3.11", "3.12", "3.13"] |
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.
nice thanks!
let obj = PyObject::from_owned_ptr(py, unicode); | ||
let s = obj.downcast_bound::<PyString>(py)?; | ||
Ok(s.to_string_lossy().trim_matches(char::from(0)).to_owned()) | ||
Ok(std::str::from_utf8(bytes)?.to_owned()) |
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.
big win there
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 haven't checked that properly.
flake.lock
Outdated
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.
to remove
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 understand if you wish to remove. Having those is extremely practical when using devenvs/nix.
I'm currently keeping copies on every machine, and rewriting them all the time is just a tad annoying.
I'll remove for now, and convert you 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.
LGTM let's go with a RC!
- name: Upload to PyPi | ||
working-directory: ./bindings/python |
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.
do you want to do a RC for this?
No description provided.