-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
0.23.4 backports 1 #22178
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
0.23.4 backports 1 #22178
Conversation
@@ -14,6 +14,7 @@ cnp.import_array() | |||
|
|||
|
|||
cdef extern from "../src/headers/cmath" namespace "std": |
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.
@chris-b1 @jbrockmendel this changed between 0.23.x and master. On master we use
cdef extern from "src/headers/cmath" namespace "std":
But here we use ../src/headers/cmath
. Does this look correct for 0.23.x?
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 looks like something I would have nit-picked about. The "../" is inaccurate in this context. Evidently the cython/gcc compiler doesn't mind either way, but I'm pretty sure the one in master is More Correct.
@TomAugspurger : I thought we were experimenting with a bot that auto-backported? Separate note: some weird |
Yes, tagging an issue with a milestone will automatically backport it if possible. I think the whatsnew changes weren't tagged with the 0.23.4 milestone, because it contained changes that shouldn't be backported. The window fix had a merge conflict. |
…as-dev#22099) (cherry picked from commit 017e910)
Codecov Report
@@ Coverage Diff @@
## 0.23.x #22178 +/- ##
==========================================
+ Coverage 91.83% 91.83% +<.01%
==========================================
Files 153 153
Lines 49592 49592
==========================================
+ Hits 45541 45545 +4
+ Misses 4051 4047 -4
Continue to review full report at Codecov.
|
Closes #22166