Skip to content

Commit 693e2d3

Browse files
authored
Add 2024.12 to allowed array API versions
1 parent a25f7d9 commit 693e2d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hypothesis-python/src/hypothesis/extra/array_api.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@
6363
]
6464

6565

66-
RELEASED_VERSIONS = ("2021.12", "2022.12", "2023.12")
66+
RELEASED_VERSIONS = ("2021.12", "2022.12", "2023.12", "2024.12")
6767
NOMINAL_VERSIONS = (*RELEASED_VERSIONS, "draft")
6868
assert sorted(NOMINAL_VERSIONS) == list(NOMINAL_VERSIONS) # sanity check
69-
NominalVersion = Literal["2021.12", "2022.12", "2023.12", "draft"]
69+
NominalVersion = Literal["2021.12", "2022.12", "2023.12", "2024.12", "draft"]
7070
assert get_args(NominalVersion) == NOMINAL_VERSIONS # sanity check
7171

7272

0 commit comments

Comments
 (0)