Skip to content

Commit

Permalink
Make the daily test not fail tonight on Python 3.13
Browse files Browse the repository at this point in the history
it's about to fail because of python/cpython#115913
  • Loading branch information
AlexWaygood committed Apr 10, 2024
1 parent 66e0a1f commit 7b15236
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/typing_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,9 @@ def clear_overloads():
if sys.version_info >= (3, 12):
_EXCLUDED_ATTRS.add("__type_params__")

if sys.version_info >= (3, 13):
_EXCLUDED_ATTRS.add("__static_attributes__")

_EXCLUDED_ATTRS = frozenset(_EXCLUDED_ATTRS)


Expand Down

0 comments on commit 7b15236

Please sign in to comment.