array-api-extra 0.6.1__tar.gz → 0.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.all-contributorsrc +12 -1
  2. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.github/workflows/cd.yml +1 -1
  3. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.github/workflows/ci.yml +3 -3
  4. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.github/workflows/docs-build.yml +1 -1
  5. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.github/workflows/docs-deploy.yml +1 -1
  6. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/CONTRIBUTORS.md +2 -1
  7. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/PKG-INFO +4 -3
  8. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/README.md +2 -1
  9. array_api_extra-0.7.0/docs/api-lazy.md +15 -0
  10. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/docs/api-reference.md +1 -0
  11. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/docs/index.md +2 -2
  12. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/pixi.lock +2917 -3690
  13. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/pyproject.toml +17 -11
  14. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/__init__.py +5 -1
  15. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/_delegation.py +4 -4
  16. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/_lib/_at.py +65 -46
  17. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/_lib/_funcs.py +211 -45
  18. array_api_extra-0.7.0/src/array_api_extra/_lib/_lazy.py +361 -0
  19. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/_lib/_testing.py +17 -11
  20. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/_lib/_utils/_compat.py +3 -0
  21. array_api_extra-0.7.0/src/array_api_extra/_lib/_utils/_compat.pyi +40 -0
  22. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/_lib/_utils/_helpers.py +114 -17
  23. array_api_extra-0.7.0/src/array_api_extra/_lib/_utils/_typing.py +10 -0
  24. array_api_extra-0.7.0/src/array_api_extra/_lib/_utils/_typing.pyi +105 -0
  25. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/testing.py +112 -41
  26. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/tests/conftest.py +1 -1
  27. array_api_extra-0.7.0/tests/test_at.py +329 -0
  28. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/tests/test_funcs.py +285 -63
  29. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/tests/test_helpers.py +59 -13
  30. array_api_extra-0.7.0/tests/test_lazy.py +429 -0
  31. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/tests/test_testing.py +110 -9
  32. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/vendor_tests/test_vendor.py +2 -0
  33. array_api_extra-0.6.1/docs/testing-utils.md +0 -14
  34. array_api_extra-0.6.1/src/array_api_extra/_lib/_utils/_compat.pyi +0 -36
  35. array_api_extra-0.6.1/src/array_api_extra/_lib/_utils/_typing.py +0 -11
  36. array_api_extra-0.6.1/tests/test_at.py +0 -261
  37. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.editorconfig +0 -0
  38. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.gitattributes +0 -0
  39. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.github/dependabot.yml +0 -0
  40. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.github/workflows/dependabot-auto-merge.yml +0 -0
  41. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.gitignore +0 -0
  42. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/.pre-commit-config.yaml +0 -0
  43. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/LICENSE +0 -0
  44. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/RELEASING.md +0 -0
  45. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/codecov.yml +0 -0
  46. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/docs/conf.py +0 -0
  47. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/docs/contributing.md +0 -0
  48. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/docs/contributors.md +0 -0
  49. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/docs/requirements.txt +0 -0
  50. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/_lib/__init__.py +0 -0
  51. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/_lib/_backends.py +0 -0
  52. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/_lib/_utils/__init__.py +0 -0
  53. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/src/array_api_extra/py.typed +0 -0
  54. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/tests/__init__.py +0 -0
  55. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/tests/test_version.py +0 -0
  56. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/vendor_tests/__init__.py +0 -0
  57. {array_api_extra-0.6.1 → array_api_extra-0.7.0}/vendor_tests/_array_api_compat_vendor.py +0 -0
@@ -27,7 +27,8 @@
27
27
  "tool",
28
28
  "test",
29
29
  "bug",
30
- "platform"
30
+ "platform",
31
+ "review"
31
32
  ]
32
33
  },
33
34
  {
@@ -214,6 +215,16 @@
214
215
  "contributions": [
215
216
  "review"
216
217
  ]
218
+ },
219
+ {
220
+ "login": "NeilGirdhar",
221
+ "name": "Neil Girdhar",
222
+ "avatar_url": "https://avatars.githubusercontent.com/u/730137?v=4",
223
+ "profile": "https://github.com/NeilGirdhar",
224
+ "contributions": [
225
+ "code",
226
+ "test"
227
+ ]
217
228
  }
218
229
  ]
219
230
  }
@@ -37,7 +37,7 @@ jobs:
37
37
  path: dist
38
38
 
39
39
  - name: Generate artifact attestation for sdist and wheel
40
- uses: actions/attest-build-provenance@v2.2.0
40
+ uses: actions/attest-build-provenance@v2.2.3
41
41
  with:
42
42
  subject-path: "dist/*"
43
43
 
@@ -32,7 +32,7 @@ jobs:
32
32
  extra_args: --hook-stage manual --all-files
33
33
  - uses: prefix-dev/setup-pixi@v0.8.3
34
34
  with:
35
- pixi-version: v0.40.3
35
+ pixi-version: v0.42.1
36
36
  cache: true
37
37
  environments: lint
38
38
  - name: Run Pylint, Mypy & Pyright
@@ -58,7 +58,7 @@ jobs:
58
58
 
59
59
  - uses: prefix-dev/setup-pixi@v0.8.3
60
60
  with:
61
- pixi-version: v0.40.3
61
+ pixi-version: v0.42.1
62
62
  cache: true
63
63
  environments: ${{ matrix.environment }}
64
64
 
@@ -66,6 +66,6 @@ jobs:
66
66
  run: pixi run -e ${{ matrix.environment }} tests-ci
67
67
 
68
68
  - name: Upload coverage report
69
- uses: codecov/codecov-action@v5.3.1
69
+ uses: codecov/codecov-action@v5.4.0
70
70
  with:
71
71
  token: ${{ secrets.CODECOV_TOKEN }}
@@ -9,7 +9,7 @@ jobs:
9
9
  - uses: actions/checkout@v4
10
10
  - uses: prefix-dev/setup-pixi@v0.8.3
11
11
  with:
12
- pixi-version: v0.40.3
12
+ pixi-version: v0.42.1
13
13
  cache: true
14
14
  environments: docs
15
15
  - name: Build Docs
@@ -16,7 +16,7 @@ jobs:
16
16
  steps:
17
17
  - uses: actions/checkout@v4
18
18
  - name: Download Artifact
19
- uses: dawidd6/action-download-artifact@v8
19
+ uses: dawidd6/action-download-artifact@v9
20
20
  with:
21
21
  workflow: docs-build.yml
22
22
  name: docs-build
@@ -9,7 +9,7 @@ This project exists thanks to the following contributors
9
9
  <table>
10
10
  <tbody>
11
11
  <tr>
12
- <td align="center" valign="top" width="14.28%"><a href="https://lucascolley.github.io/"><img src="https://avatars.githubusercontent.com/u/51488791?v=4?s=100" width="100px;" alt="Lucas Colley"/><br /><sub><b>Lucas Colley</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Documentation">📖</a> <a href="#example-lucascolley" title="Examples">💡</a> <a href="#ideas-lucascolley" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-lucascolley" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-lucascolley" title="Maintenance">🚧</a> <a href="#tool-lucascolley" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Tests">⚠️</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Alucascolley" title="Bug reports">🐛</a> <a href="#platform-lucascolley" title="Packaging/porting to new platform">📦</a></td>
12
+ <td align="center" valign="top" width="14.28%"><a href="https://lucascolley.github.io/"><img src="https://avatars.githubusercontent.com/u/51488791?v=4?s=100" width="100px;" alt="Lucas Colley"/><br /><sub><b>Lucas Colley</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Documentation">📖</a> <a href="#example-lucascolley" title="Examples">💡</a> <a href="#ideas-lucascolley" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-lucascolley" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-lucascolley" title="Maintenance">🚧</a> <a href="#tool-lucascolley" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Tests">⚠️</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Alucascolley" title="Bug reports">🐛</a> <a href="#platform-lucascolley" title="Packaging/porting to new platform">📦</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Alucascolley" title="Reviewed Pull Requests">👀</a></td>
13
13
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/mdhaber"><img src="https://avatars.githubusercontent.com/u/6570539?v=4?s=100" width="100px;" alt="Matt Haberland"/><br /><sub><b>Matt Haberland</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=mdhaber" title="Code">💻</a> <a href="#ideas-mdhaber" title="Ideas, Planning, & Feedback">🤔</a></td>
14
14
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/j-bowhay"><img src="https://avatars.githubusercontent.com/u/60778417?v=4?s=100" width="100px;" alt="Jake Bowhay"/><br /><sub><b>Jake Bowhay</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=j-bowhay" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Aj-bowhay" title="Reviewed Pull Requests">👀</a></td>
15
15
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/asmeurer"><img src="https://avatars.githubusercontent.com/u/71486?v=4?s=100" width="100px;" alt="Aaron Meurer"/><br /><sub><b>Aaron Meurer</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Aasmeurer" title="Reviewed Pull Requests">👀</a> <a href="#ideas-asmeurer" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-asmeurer" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
@@ -33,6 +33,7 @@ This project exists thanks to the following contributors
33
33
  <td align="center" valign="top" width="14.28%"><a href="http://www.vanderplas.com/"><img src="https://avatars.githubusercontent.com/u/781659?v=4?s=100" width="100px;" alt="Jake Vanderplas"/><br /><sub><b>Jake Vanderplas</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Ajakevdp" title="Reviewed Pull Requests">👀</a></td>
34
34
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/KotlinIsland"><img src="https://avatars.githubusercontent.com/u/65446343?v=4?s=100" width="100px;" alt="kotlinisland"/><br /><sub><b>kotlinisland</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Akotlinisland" title="Reviewed Pull Requests">👀</a></td>
35
35
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/DetachHead"><img src="https://avatars.githubusercontent.com/u/57028336?v=4?s=100" width="100px;" alt="detachhead"/><br /><sub><b>detachhead</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Adetachhead" title="Reviewed Pull Requests">👀</a></td>
36
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/NeilGirdhar"><img src="https://avatars.githubusercontent.com/u/730137?v=4?s=100" width="100px;" alt="Neil Girdhar"/><br /><sub><b>Neil Girdhar</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=NeilGirdhar" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=NeilGirdhar" title="Tests">⚠️</a></td>
36
37
  </tr>
37
38
  </tbody>
38
39
  </table>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: array-api-extra
3
- Version: 0.6.1
3
+ Version: 0.7.0
4
4
  Summary: Extra array functions built on top of the array API standard.
5
5
  Project-URL: Homepage, https://github.com/data-apis/array-api-extra
6
6
  Project-URL: Bug Tracker, https://github.com/data-apis/array-api-extra/issues
@@ -40,7 +40,7 @@ Classifier: Programming Language :: Python :: 3.12
40
40
  Classifier: Programming Language :: Python :: 3.13
41
41
  Classifier: Typing :: Typed
42
42
  Requires-Python: >=3.10
43
- Requires-Dist: array-api-compat<2,>=1.10.0
43
+ Requires-Dist: array-api-compat<2,>=1.11
44
44
  Description-Content-Type: text/markdown
45
45
 
46
46
  # array-api-extra
@@ -106,7 +106,7 @@ This project exists thanks to the following contributors
106
106
  <table>
107
107
  <tbody>
108
108
  <tr>
109
- <td align="center" valign="top" width="14.28%"><a href="https://lucascolley.github.io/"><img src="https://avatars.githubusercontent.com/u/51488791?v=4?s=100" width="100px;" alt="Lucas Colley"/><br /><sub><b>Lucas Colley</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Documentation">📖</a> <a href="#example-lucascolley" title="Examples">💡</a> <a href="#ideas-lucascolley" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-lucascolley" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-lucascolley" title="Maintenance">🚧</a> <a href="#tool-lucascolley" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Tests">⚠️</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Alucascolley" title="Bug reports">🐛</a> <a href="#platform-lucascolley" title="Packaging/porting to new platform">📦</a></td>
109
+ <td align="center" valign="top" width="14.28%"><a href="https://lucascolley.github.io/"><img src="https://avatars.githubusercontent.com/u/51488791?v=4?s=100" width="100px;" alt="Lucas Colley"/><br /><sub><b>Lucas Colley</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Documentation">📖</a> <a href="#example-lucascolley" title="Examples">💡</a> <a href="#ideas-lucascolley" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-lucascolley" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-lucascolley" title="Maintenance">🚧</a> <a href="#tool-lucascolley" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Tests">⚠️</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Alucascolley" title="Bug reports">🐛</a> <a href="#platform-lucascolley" title="Packaging/porting to new platform">📦</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Alucascolley" title="Reviewed Pull Requests">👀</a></td>
110
110
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/mdhaber"><img src="https://avatars.githubusercontent.com/u/6570539?v=4?s=100" width="100px;" alt="Matt Haberland"/><br /><sub><b>Matt Haberland</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=mdhaber" title="Code">💻</a> <a href="#ideas-mdhaber" title="Ideas, Planning, & Feedback">🤔</a></td>
111
111
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/j-bowhay"><img src="https://avatars.githubusercontent.com/u/60778417?v=4?s=100" width="100px;" alt="Jake Bowhay"/><br /><sub><b>Jake Bowhay</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=j-bowhay" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Aj-bowhay" title="Reviewed Pull Requests">👀</a></td>
112
112
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/asmeurer"><img src="https://avatars.githubusercontent.com/u/71486?v=4?s=100" width="100px;" alt="Aaron Meurer"/><br /><sub><b>Aaron Meurer</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Aasmeurer" title="Reviewed Pull Requests">👀</a> <a href="#ideas-asmeurer" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-asmeurer" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
@@ -130,6 +130,7 @@ This project exists thanks to the following contributors
130
130
  <td align="center" valign="top" width="14.28%"><a href="http://www.vanderplas.com/"><img src="https://avatars.githubusercontent.com/u/781659?v=4?s=100" width="100px;" alt="Jake Vanderplas"/><br /><sub><b>Jake Vanderplas</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Ajakevdp" title="Reviewed Pull Requests">👀</a></td>
131
131
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/KotlinIsland"><img src="https://avatars.githubusercontent.com/u/65446343?v=4?s=100" width="100px;" alt="kotlinisland"/><br /><sub><b>kotlinisland</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Akotlinisland" title="Reviewed Pull Requests">👀</a></td>
132
132
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/DetachHead"><img src="https://avatars.githubusercontent.com/u/57028336?v=4?s=100" width="100px;" alt="detachhead"/><br /><sub><b>detachhead</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Adetachhead" title="Reviewed Pull Requests">👀</a></td>
133
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/NeilGirdhar"><img src="https://avatars.githubusercontent.com/u/730137?v=4?s=100" width="100px;" alt="Neil Girdhar"/><br /><sub><b>Neil Girdhar</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=NeilGirdhar" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=NeilGirdhar" title="Tests">⚠️</a></td>
133
134
  </tr>
134
135
  </tbody>
135
136
  </table>
@@ -61,7 +61,7 @@ This project exists thanks to the following contributors
61
61
  <table>
62
62
  <tbody>
63
63
  <tr>
64
- <td align="center" valign="top" width="14.28%"><a href="https://lucascolley.github.io/"><img src="https://avatars.githubusercontent.com/u/51488791?v=4?s=100" width="100px;" alt="Lucas Colley"/><br /><sub><b>Lucas Colley</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Documentation">📖</a> <a href="#example-lucascolley" title="Examples">💡</a> <a href="#ideas-lucascolley" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-lucascolley" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-lucascolley" title="Maintenance">🚧</a> <a href="#tool-lucascolley" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Tests">⚠️</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Alucascolley" title="Bug reports">🐛</a> <a href="#platform-lucascolley" title="Packaging/porting to new platform">📦</a></td>
64
+ <td align="center" valign="top" width="14.28%"><a href="https://lucascolley.github.io/"><img src="https://avatars.githubusercontent.com/u/51488791?v=4?s=100" width="100px;" alt="Lucas Colley"/><br /><sub><b>Lucas Colley</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Documentation">📖</a> <a href="#example-lucascolley" title="Examples">💡</a> <a href="#ideas-lucascolley" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-lucascolley" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-lucascolley" title="Maintenance">🚧</a> <a href="#tool-lucascolley" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=lucascolley" title="Tests">⚠️</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Alucascolley" title="Bug reports">🐛</a> <a href="#platform-lucascolley" title="Packaging/porting to new platform">📦</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Alucascolley" title="Reviewed Pull Requests">👀</a></td>
65
65
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/mdhaber"><img src="https://avatars.githubusercontent.com/u/6570539?v=4?s=100" width="100px;" alt="Matt Haberland"/><br /><sub><b>Matt Haberland</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=mdhaber" title="Code">💻</a> <a href="#ideas-mdhaber" title="Ideas, Planning, & Feedback">🤔</a></td>
66
66
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/j-bowhay"><img src="https://avatars.githubusercontent.com/u/60778417?v=4?s=100" width="100px;" alt="Jake Bowhay"/><br /><sub><b>Jake Bowhay</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=j-bowhay" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Aj-bowhay" title="Reviewed Pull Requests">👀</a></td>
67
67
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/asmeurer"><img src="https://avatars.githubusercontent.com/u/71486?v=4?s=100" width="100px;" alt="Aaron Meurer"/><br /><sub><b>Aaron Meurer</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Aasmeurer" title="Reviewed Pull Requests">👀</a> <a href="#ideas-asmeurer" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-asmeurer" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
@@ -85,6 +85,7 @@ This project exists thanks to the following contributors
85
85
  <td align="center" valign="top" width="14.28%"><a href="http://www.vanderplas.com/"><img src="https://avatars.githubusercontent.com/u/781659?v=4?s=100" width="100px;" alt="Jake Vanderplas"/><br /><sub><b>Jake Vanderplas</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Ajakevdp" title="Reviewed Pull Requests">👀</a></td>
86
86
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/KotlinIsland"><img src="https://avatars.githubusercontent.com/u/65446343?v=4?s=100" width="100px;" alt="kotlinisland"/><br /><sub><b>kotlinisland</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Akotlinisland" title="Reviewed Pull Requests">👀</a></td>
87
87
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/DetachHead"><img src="https://avatars.githubusercontent.com/u/57028336?v=4?s=100" width="100px;" alt="detachhead"/><br /><sub><b>detachhead</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Adetachhead" title="Reviewed Pull Requests">👀</a></td>
88
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/NeilGirdhar"><img src="https://avatars.githubusercontent.com/u/730137?v=4?s=100" width="100px;" alt="Neil Girdhar"/><br /><sub><b>Neil Girdhar</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=NeilGirdhar" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=NeilGirdhar" title="Tests">⚠️</a></td>
88
89
  </tr>
89
90
  </tbody>
90
91
  </table>
@@ -0,0 +1,15 @@
1
+ # Tools for lazy backends
2
+
3
+ These additional functions are meant to be used to support compatibility with
4
+ lazy backends, e.g. Dask or JAX:
5
+
6
+ ```{eval-rst}
7
+ .. currentmodule:: array_api_extra
8
+ .. autosummary::
9
+ :nosignatures:
10
+ :toctree: generated
11
+
12
+ lazy_apply
13
+ testing.lazy_xp_function
14
+ testing.patch_lazy_xp_functions
15
+ ```
@@ -6,6 +6,7 @@
6
6
  :nosignatures:
7
7
  :toctree: generated
8
8
 
9
+ apply_where
9
10
  at
10
11
  atleast_nd
11
12
  broadcast_shapes
@@ -5,7 +5,7 @@
5
5
  :hidden:
6
6
  self
7
7
  api-reference.md
8
- testing-utils.md
8
+ api-lazy.md
9
9
  contributing.md
10
10
  contributors.md
11
11
  ```
@@ -185,7 +185,7 @@ increase performance.
185
185
  In particular, the following kinds of function are also in-scope:
186
186
 
187
187
  - Functions which implement
188
- [array API standard extension](https://data-apis.org/array-api/2023.12/extensions/index.html)
188
+ [array API standard extension](https://data-apis.org/array-api/latest/extensions/index.html)
189
189
  functions in terms of functions from the base standard.
190
190
  - Functions which add functionality (e.g. extra parameters) to functions from
191
191
  the standard.