-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Remove the dependency on six. #2806
Conversation
Replaces #2512 Leaves vendored six.py and tests/functional/test_six_threading.py intact. Otherwise references of six were removed from everywhere and the code depends on the standard library instead.
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 the pared down PR, @mcepl! A couple minor comments, I believe the one around bytes should solve the test failures. Please let us know if you have any questions.
Co-authored-by: Nate Prewitt <nate.prewitt@gmail.com>
Co-authored-by: Nate Prewitt <nate.prewitt@gmail.com>
Co-authored-by: Nate Prewitt <nate.prewitt@gmail.com>
Codecov ReportBase: 93.45% // Head: 93.44% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## develop #2806 +/- ##
===========================================
- Coverage 93.45% 93.44% -0.01%
===========================================
Files 63 63
Lines 13298 13297 -1
===========================================
- Hits 12427 12426 -1
Misses 871 871
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
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.
Alright, it looks like this is set. Thanks @mcepl!
Replaces #2512
Leaves vendored six.py and tests/functional/test_six_threading.py intact.
Otherwise references of six were removed from everywhere and the code depends on the standard library instead.