Skip to content

Commit

Permalink
fix: Update TypedDict version bound
Browse files Browse the repository at this point in the history
We're using a feature that didn't make it into `3.13` yet https://peps.python.org/pep-0728/
  • Loading branch information
dangotbanned committed Sep 15, 2024
1 parent a773c97 commit 9f49ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion altair/vegalite/v5/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from .schema._typing import Map
from .theme import themes

if sys.version_info >= (3, 13):
if sys.version_info >= (3, 14):
from typing import TypedDict
else:
from typing_extensions import TypedDict
Expand Down

0 comments on commit 9f49ef6

Please sign in to comment.