-
Notifications
You must be signed in to change notification settings - Fork 4
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
Casts columns to string before checking for special characters #231
Casts columns to string before checking for special characters #231
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.
Looks like a sensible solution to an overlooked bug. Unfortunately the CI is failing on Windows with Python 3.6 - we no longer officially support 3.6 so if this can't be resolved that's ok, but please can you check to see if it can be first
"table": pd.DataFrame({"a": [0], "b": [1]}) | ||
}) | ||
|
||
#Testing that this function executes with no errors |
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.
Thanks for adding a comment to make this more explicit. Another option might be to use does_not_raise but for this situation that might be overkill
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.
We have already discussed removing support for python 3.6, so I am happy to go with this if there is no obvious alternative solution, just make sure it's documented in the changelog. Thanks for getting this fixed
Fixes issue 227