Skip to content

Commit 8ddfcc2

Browse files
authored
Merge pull request #4645 from ev-br/array_api_2025.12
Add 2025.12 to allowed array API versions
2 parents 83bd35a + edb6701 commit 8ddfcc2

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

hypothesis-python/RELEASE.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
RELEASE_TYPE: minor
2+
3+
Add 2025.12 to the list of recognized Array API versions in
4+
``hypothesis.extra.array_api``.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@
5858
]
5959

6060

61-
RELEASED_VERSIONS = ("2021.12", "2022.12", "2023.12", "2024.12")
61+
RELEASED_VERSIONS = ("2021.12", "2022.12", "2023.12", "2024.12", "2025.12")
6262
NOMINAL_VERSIONS = (*RELEASED_VERSIONS, "draft")
6363
assert sorted(NOMINAL_VERSIONS) == list(NOMINAL_VERSIONS) # sanity check
64-
NominalVersion = Literal["2021.12", "2022.12", "2023.12", "2024.12", "draft"]
64+
NominalVersion = Literal["2021.12", "2022.12", "2023.12", "2024.12", "2025.12", "draft"]
6565
assert get_args(NominalVersion) == NOMINAL_VERSIONS # sanity check
6666

6767

0 commit comments

Comments
 (0)