diff --git a/hypothesis-python/src/hypothesis/extra/array_api.py b/hypothesis-python/src/hypothesis/extra/array_api.py index f3a7ecc155..c8fcd64e5f 100644 --- a/hypothesis-python/src/hypothesis/extra/array_api.py +++ b/hypothesis-python/src/hypothesis/extra/array_api.py @@ -63,10 +63,10 @@ ] -RELEASED_VERSIONS = ("2021.12", "2022.12", "2023.12") +RELEASED_VERSIONS = ("2021.12", "2022.12", "2023.12", "2024.12") NOMINAL_VERSIONS = (*RELEASED_VERSIONS, "draft") assert sorted(NOMINAL_VERSIONS) == list(NOMINAL_VERSIONS) # sanity check -NominalVersion = Literal["2021.12", "2022.12", "2023.12", "draft"] +NominalVersion = Literal["2021.12", "2022.12", "2023.12", "2024.12", "draft"] assert get_args(NominalVersion) == NOMINAL_VERSIONS # sanity check