Skip to content

Commit 729175f

Browse files
committed
Add warning that functions may not be fully tested
1 parent 31ceaae commit 729175f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_strict/_flags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def set_array_api_strict_flags(
141141
if api_version == "2021.12":
142142
warnings.warn("The 2021.12 version of the array API specification was requested but the returned namespace is actually version 2022.12", stacklevel=2)
143143
if api_version == draft_version:
144-
warnings.warn(f"The {draft_version} version of the array API specification is in draft status. Not all features are implemented in array_api_strict, and behaviors are subject to change before the final standard release.")
144+
warnings.warn(f"The {draft_version} version of the array API specification is in draft status. Not all features are implemented in array_api_strict, some functions may not be fully tested, and behaviors are subject to change before the final standard release.")
145145
API_VERSION = api_version
146146
array_api_strict.__array_api_version__ = API_VERSION
147147

0 commit comments

Comments
 (0)