-
Notifications
You must be signed in to change notification settings - Fork 68
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
Drop support for Python 3.7 and Pyspark 2.x and remove vendored dependency on six #80
Conversation
577e846
to
d5f4c01
Compare
…dendencies update pytest describe add flexible terminal string formatter start swapping in default formats start phasing out underline_cells wip wip demonstrate how custom formatting can be injected via pytest fixtures wip make sure format_string works with no formats add new custom formatter to readme bump to v0.10.0 New Chispa interface (MrPowers#94) * add formats to dataframe comparer * add new chispa interface lock run tests for multiple python versions small fix add runs-on argument fix reset ci
d5f4c01
to
4b7d453
Compare
@MrPowers I think this one is ready for review; is it time to drop support for Python |
@SemyonSinchenko Do you have time to review this one by any chance? I based a few other PR's on top of this one. (#81 and #106), so if this is merged I can rebase those. |
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
This PR:
six
..python_version
to.gitgnore
.For removing the dependency on
six
, I simply replacedsix.moves.zip_longest
withitertools.zip_longest
as suggested by @MrPowers. I however did not test if this changes existing functionality, I assume that is already covered by the unit tests? Those ran uccessfully.See also #78