Skip to content

Commit

Permalink
(fix): minimum python version 3.11 forNamedTuple with Generic (
Browse files Browse the repository at this point in the history
  • Loading branch information
ilan-gold authored Aug 12, 2024
1 parent e0b81f1 commit 9f8b5ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/anndata/_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def describe(self: RegisteredOption, *, as_rst: bool = False) -> str:
return textwrap.dedent(doc)


if sys.version_info >= (3, 10):
if sys.version_info >= (3, 11):

class RegisteredOption(NamedTuple, Generic[T]):
option: str
Expand Down

0 comments on commit 9f8b5ba

Please sign in to comment.