Skip to content

Commit

Permalink
Add 2024.12 to allowed array API versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ev-br authored Feb 2, 2025
1 parent a25f7d9 commit 693e2d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hypothesis-python/src/hypothesis/extra/array_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 693e2d3

Please sign in to comment.