-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BLD: Remove windows shim #46437
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
BLD: Remove windows shim #46437
Conversation
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. Maybe someone more familiar with the C code should review though.
#ifndef _PANDAS_STDINT_H_ | ||
#define _PANDAS_STDINT_H_ | ||
|
||
#if defined(_MSC_VER) && (_MSC_VER < 1900) |
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 guess the shim was only used for < VS 2015(https://dev.to/yumetodo/list-of-mscver-and-mscfullver-8nd). We should be good here as our min. Visual Studio requirement should be VS2019.
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.
More of out curiosity than anything else, where do we specify the minimum version for VS?
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.
Absolutely no idea I opened cython/cython#2570 years ago in the hope this would become their problem
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.
More of out curiosity than anything else, where do we specify the minimum version for VS?
There's a mention of VS2019 in our development environment docs
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.
Just in case, I think it would be good to include a whatsnew note that a customs header for int types for VS 2019 compat has been removed.
I don't see how it's user-facing, but OK. Suggested wording/location? |
Okay on second thought, this should be okay. Thanks @jbrockmendel |
Nevermind, the run was from before this build started failing. |
Just to see if this breaks the world.