Skip to content

Commit

Permalink
Add support for 2023.12 in extra.array_api
Browse files Browse the repository at this point in the history
No API changes
  • Loading branch information
honno committed Feb 28, 2024
1 parent 1be5544 commit 4dc3de8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hypothesis-python/src/hypothesis/extra/array_api.py
Expand Up @@ -69,10 +69,10 @@
]


RELEASED_VERSIONS = ("2021.12", "2022.12")
RELEASED_VERSIONS = ("2021.12", "2022.12", "2023.12")
NOMINAL_VERSIONS = (*RELEASED_VERSIONS, "draft")
assert sorted(NOMINAL_VERSIONS) == list(NOMINAL_VERSIONS) # sanity check
NominalVersion = Literal["2021.12", "2022.12", "draft"]
NominalVersion = Literal["2021.12", "2022.12", "2023.12", "draft"]
assert get_args(NominalVersion) == NOMINAL_VERSIONS # sanity check


Expand Down

0 comments on commit 4dc3de8

Please sign in to comment.