-
Notifications
You must be signed in to change notification settings - Fork 322
Support PyPy #515
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
Support PyPy #515
Conversation
Tests seem to be failing since this is a PR from a fork, but I validated it builds successfully on my machine. |
@rsyring I created a native branch with all the changes in this repo to check if the build passes. If it does, I'll merge it - unless you have any objections. https://travis-ci.org/pymssql/pymssql/jobs/301628701 |
*/ | ||
#ifndef PyByteArray_Check | ||
#define PyByteArray_Check(self) (0) | ||
#endif |
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.
Would like to see a newline at the end of each file.
@yuvalbar could we update CI so that we are also doing a test run with PyPI? |
@yuvalbar Thanks. Did the tests get updated to run these changes? Do you just want to create a new PR with the native branch so we can see the tests results in the PR? |
Closed in favor of #517 |
This PR allows PyMSSQL to compile on PyPy. It is based on this PR: #309. I rebased the branch on the current master and made the changes requested in the linked PR to ensure it compiles properly.