-
Notifications
You must be signed in to change notification settings - Fork 155
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 ABI tag for CPython 3.13 on Windows #578
Conversation
CPython 3.13a1 on Windows now provides the SOABI sysconfig variable. However, the SOABI (and extension suffixes) are different on Windows than on Linux and macOS, e.g. `cp310-win_amd64` vs. `cpython-313-darwin`. Fixes pypa#576
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #578 +/- ##
==========================================
+ Coverage 72.61% 72.66% +0.05%
==========================================
Files 13 13
Lines 1088 1090 +2
==========================================
+ Hits 790 792 +2
Misses 298 298
☔ View full report in Codecov by Sentry. |
"cpython" starts with "cp" (doh!)
Would you mind adding a changelog entry? |
@agronholm GitHub Actions's |
Done. |
CPython 3.13a1 on Windows now provides the SOABI sysconfig variable. However, the SOABI (and extension suffixes) are different on Windows than on Linux and macOS, e.g.
cp310-win_amd64
vs.cpython-313-darwin
.Fixes #576