docs: add version compatibility table#733
Conversation
| * - :class:`Buffer` | ||
| - 3.12 | ||
| - 4.6.0 | ||
| - |
| - 4.15.0 | ||
| - :pep:`800` | ||
| * - :func:`evaluate_forward_ref` | ||
| - |
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #733 +/- ##
=======================================
Coverage 97.38% 97.38%
=======================================
Files 3 3
Lines 7690 7768 +78
=======================================
+ Hits 7489 7565 +76
- Misses 201 203 +2
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
|
I'm happy to finish this up but @r266-tech are you willing to sign the contributor license agreement? Otherwise we'll have to close this PR. |
Add a table listing typing_extensions objects that backport or extend features from the standard library, showing: - Python version when the feature was added to typing - typing_extensions release that first included it - Associated PEP (if any) Closes python#299
4ddd22e to
7541a36
Compare
|
@JelleZijlstra CLA signed and check is green now — happy to have you finish it up whenever convenient, thanks! |
|
Addressed both review comments in e16f2ba: added PEP 688 for |
Summary
Adds a version compatibility table to the documentation, as requested in #299.
The table lists objects provided by
typing_extensionsthat backport or extend features from the standard library, showing:typingThis follows the format suggested by @JelleZijlstra in the issue discussion, using a
list-tabledirective as recommended by @AlexWaygood for easier maintenance.Closes #299