-
Notifications
You must be signed in to change notification settings - Fork 514
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Script for checking if our instrumented libs are python 3.13 compatible #3425
Script for checking if our instrumented libs are python 3.13 compatible #3425
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## master #3425 +/- ##
=======================================
Coverage 79.89% 79.89%
=======================================
Files 137 137
Lines 15387 15387
Branches 2613 2613
=======================================
+ Hits 12293 12294 +1
Misses 2221 2221
+ Partials 873 872 -1 |
Ooo I want this! |
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.
✨
@@ -0,0 +1,3 @@ | |||
requests | |||
pathlib |
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.
pathlib has been part of the standard library since Python 3.4: https://docs.python.org/3/library/pathlib.html.
I don't think you want to install this dependency, as it hasn't been updated since 2014: https://pypi.org/project/pathlib/.
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 catching this! #3863
A simple script that parses all libraries we test against from our
tox.ini
and then checks PyPI if this library already supports the newest Python version (currently 3.13)