Skip to content

Commit fab197d

Browse files
committed
WIP apply_numpy_func
1 parent 1708482 commit fab197d

File tree

9 files changed

+376
-8
lines changed

9 files changed

+376
-8
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ repos:
5959
hooks:
6060
- id: shellcheck
6161

62-
- repo: local
63-
hooks:
64-
- id: disallow-caps
65-
name: Disallow improper capitalization
66-
language: pygrep
67-
entry: PyBind|Numpy|Cmake|CCache|Github|PyTest
68-
exclude: .pre-commit-config.yaml
62+
# - repo: local
63+
# hooks:
64+
# - id: disallow-caps
65+
# name: Disallow improper capitalization
66+
# language: pygrep
67+
# entry: PyBind|Numpy|Cmake|CCache|Github|PyTest
68+
# exclude: .pre-commit-config.yaml
6969

7070
- repo: https://github.com/abravalheri/validate-pyproject
7171
rev: "v0.23"

docs/api-reference.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
:nosignatures:
77
:toctree: generated
88
9+
apply_numpy_func
910
at
1011
atleast_nd
1112
cov

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
intersphinx_mapping = {
5555
"python": ("https://docs.python.org/3", None),
5656
"jax": ("https://jax.readthedocs.io/en/latest", None),
57+
"dask": ("https://docs.dask.org/en/stable", None),
5758
}
5859

5960
nitpick_ignore = [

src/array_api_extra/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Extra array functions built on top of the array API standard."""
22

3+
from ._apply import apply_numpy_func
34
from ._funcs import (
45
at,
56
atleast_nd,
@@ -17,6 +18,7 @@
1718
# pylint: disable=duplicate-code
1819
__all__ = [
1920
"__version__",
21+
"apply_numpy_func",
2022
"at",
2123
"atleast_nd",
2224
"cov",

0 commit comments

Comments
 (0)