diff options
author | Aaron Meurer <asmeurer@gmail.com> | 2021-11-14 14:35:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-14 22:35:06 +0100 |
commit | a1813504ad44b70fb139181a9df8465bcb22e24d (patch) | |
tree | 1c638079fe4e675976d73a0fb120f2f05d2ec522 /numpy/tests/test_public_api.py | |
parent | b8a0f339dcd90c134e1cc3e19d06348069af685b (diff) | |
download | numpy-a1813504ad44b70fb139181a9df8465bcb22e24d.tar.gz |
ENH: Add the linalg extension to the array_api submodule (#19980)
Diffstat (limited to 'numpy/tests/test_public_api.py')
-rw-r--r-- | numpy/tests/test_public_api.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py index fa29c75b5..0754df402 100644 --- a/numpy/tests/test_public_api.py +++ b/numpy/tests/test_public_api.py @@ -123,6 +123,7 @@ def test_NPY_NO_EXPORT(): # private, to clean up our public API and avoid confusion. PUBLIC_MODULES = ['numpy.' + s for s in [ "array_api", + "array_api.linalg", "ctypeslib", "distutils", "distutils.cpuinfo", |