array-api-extra 0.9.0__tar.gz → 0.9.1__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.
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.all-contributorsrc +40 -2
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.github/workflows/cd.yml +5 -5
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.github/workflows/ci.yml +7 -7
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.github/workflows/docs-build.yml +4 -4
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.github/workflows/docs-deploy.yml +1 -1
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/CONTRIBUTORS.md +5 -2
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/PKG-INFO +6 -4
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/README.md +5 -2
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/docs/conf.py +1 -1
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/lefthook.yml +2 -2
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/pyproject.toml +24 -25
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/__init__.py +19 -8
- array_api_extra-0.9.1/src/array_api_extra/_delegation.py +1028 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_funcs.py +66 -353
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_utils/_helpers.py +13 -4
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/tests/test_funcs.py +372 -33
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/tests/test_helpers.py +3 -0
- array_api_extra-0.9.0/src/array_api_extra/_delegation.py +0 -328
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.dprint.jsonc +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.editorconfig +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.gitattributes +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.github/pull_request_template.md +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/.gitignore +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/LICENSE +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/docs/api-lazy.md +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/docs/api-reference.md +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/docs/contributing.md +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/docs/contributors.md +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/docs/index.md +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/__init__.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_at.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_backends.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_lazy.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_testing.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_utils/__init__.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_utils/_compat.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_utils/_compat.pyi +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_utils/_typing.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/_lib/_utils/_typing.pyi +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/py.typed +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/src/array_api_extra/testing.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/tests/__init__.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/tests/conftest.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/tests/test_at.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/tests/test_lazy.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/tests/test_testing.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/tests/test_version.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/typos.toml +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/vendor_tests/__init__.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/vendor_tests/_array_api_compat_vendor.py +0 -0
- {array_api_extra-0.9.0 → array_api_extra-0.9.1}/vendor_tests/test_vendor.py +0 -0
|
@@ -28,7 +28,9 @@
|
|
|
28
28
|
"test",
|
|
29
29
|
"bug",
|
|
30
30
|
"platform",
|
|
31
|
-
"review"
|
|
31
|
+
"review",
|
|
32
|
+
"talk",
|
|
33
|
+
"mentoring"
|
|
32
34
|
]
|
|
33
35
|
},
|
|
34
36
|
{
|
|
@@ -161,7 +163,10 @@
|
|
|
161
163
|
"avatar_url": "https://avatars.githubusercontent.com/u/17495884?v=4",
|
|
162
164
|
"profile": "https://github.com/OmarManzoor",
|
|
163
165
|
"contributions": [
|
|
164
|
-
"code"
|
|
166
|
+
"code",
|
|
167
|
+
"doc",
|
|
168
|
+
"bug",
|
|
169
|
+
"test"
|
|
165
170
|
]
|
|
166
171
|
},
|
|
167
172
|
{
|
|
@@ -270,6 +275,39 @@
|
|
|
270
275
|
"contributions": [
|
|
271
276
|
"ideas"
|
|
272
277
|
]
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"login": "Enderdead",
|
|
281
|
+
"name": "Gauthier-Clerc François",
|
|
282
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/22777836?v=4",
|
|
283
|
+
"profile": "https://github.com/Enderdead",
|
|
284
|
+
"contributions": [
|
|
285
|
+
"code",
|
|
286
|
+
"test",
|
|
287
|
+
"bug"
|
|
288
|
+
]
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"login": "adriagarp",
|
|
292
|
+
"name": "Adrián García Pitarch",
|
|
293
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/96059447?v=4",
|
|
294
|
+
"profile": "https://github.com/adriagarp",
|
|
295
|
+
"contributions": [
|
|
296
|
+
"code",
|
|
297
|
+
"test"
|
|
298
|
+
]
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"login": "cakedev0",
|
|
302
|
+
"name": "Arthur Lacote",
|
|
303
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/25986961?v=4",
|
|
304
|
+
"profile": "https://github.com/cakedev0",
|
|
305
|
+
"contributions": [
|
|
306
|
+
"code",
|
|
307
|
+
"doc",
|
|
308
|
+
"ideas",
|
|
309
|
+
"test"
|
|
310
|
+
]
|
|
273
311
|
}
|
|
274
312
|
]
|
|
275
313
|
}
|
|
@@ -17,11 +17,11 @@ jobs:
|
|
|
17
17
|
dist:
|
|
18
18
|
runs-on: ubuntu-latest
|
|
19
19
|
steps:
|
|
20
|
-
- uses: actions/checkout@
|
|
20
|
+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
21
21
|
with:
|
|
22
22
|
fetch-depth: 0
|
|
23
23
|
|
|
24
|
-
- uses: hynek/build-and-inspect-python-package@
|
|
24
|
+
- uses: hynek/build-and-inspect-python-package@efb823f52190ad02594531168b7a2d5790e66516 # v2.14.0
|
|
25
25
|
|
|
26
26
|
publish:
|
|
27
27
|
needs: [dist]
|
|
@@ -34,14 +34,14 @@ jobs:
|
|
|
34
34
|
if: github.event_name == 'release' && github.event.action == 'published'
|
|
35
35
|
|
|
36
36
|
steps:
|
|
37
|
-
- uses: actions/download-artifact@
|
|
37
|
+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
|
|
38
38
|
with:
|
|
39
39
|
name: Packages
|
|
40
40
|
path: dist
|
|
41
41
|
|
|
42
42
|
- name: Generate artifact attestation for sdist and wheel
|
|
43
|
-
uses: actions/attest-build-provenance@
|
|
43
|
+
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
|
|
44
44
|
with:
|
|
45
45
|
subject-path: "dist/*"
|
|
46
46
|
|
|
47
|
-
- uses: pypa/gh-action-pypi-publish@
|
|
47
|
+
- uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
|
|
@@ -24,13 +24,13 @@ jobs:
|
|
|
24
24
|
name: Lint
|
|
25
25
|
runs-on: ubuntu-latest
|
|
26
26
|
steps:
|
|
27
|
-
- uses: actions/checkout@
|
|
27
|
+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
28
28
|
with:
|
|
29
29
|
fetch-depth: 0
|
|
30
30
|
|
|
31
|
-
- uses: prefix-dev/setup-pixi@
|
|
31
|
+
- uses: prefix-dev/setup-pixi@28eb668aafebd9dede9d97c4ba1cd9989a4d0004 # v0.9.2
|
|
32
32
|
with:
|
|
33
|
-
pixi-version: v0.
|
|
33
|
+
pixi-version: v0.58.0
|
|
34
34
|
cache: true
|
|
35
35
|
environments: lint
|
|
36
36
|
|
|
@@ -53,13 +53,13 @@ jobs:
|
|
|
53
53
|
runs-on: [ubuntu-latest]
|
|
54
54
|
|
|
55
55
|
steps:
|
|
56
|
-
- uses: actions/checkout@
|
|
56
|
+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
57
57
|
with:
|
|
58
58
|
fetch-depth: 0
|
|
59
59
|
|
|
60
|
-
- uses: prefix-dev/setup-pixi@
|
|
60
|
+
- uses: prefix-dev/setup-pixi@28eb668aafebd9dede9d97c4ba1cd9989a4d0004 # v0.9.2
|
|
61
61
|
with:
|
|
62
|
-
pixi-version: v0.
|
|
62
|
+
pixi-version: v0.58.0
|
|
63
63
|
cache: true
|
|
64
64
|
environments: ${{ matrix.environment }}
|
|
65
65
|
|
|
@@ -74,6 +74,6 @@ jobs:
|
|
|
74
74
|
|
|
75
75
|
- name: Upload coverage report
|
|
76
76
|
if: ${{ matrix.environment != 'tests-nogil' }}
|
|
77
|
-
uses: codecov/codecov-action@
|
|
77
|
+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
|
|
78
78
|
with:
|
|
79
79
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
@@ -9,11 +9,11 @@ jobs:
|
|
|
9
9
|
docs-build:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
12
|
+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
13
13
|
|
|
14
|
-
- uses: prefix-dev/setup-pixi@
|
|
14
|
+
- uses: prefix-dev/setup-pixi@28eb668aafebd9dede9d97c4ba1cd9989a4d0004 # v0.9.2
|
|
15
15
|
with:
|
|
16
|
-
pixi-version: v0.
|
|
16
|
+
pixi-version: v0.58.0
|
|
17
17
|
cache: true
|
|
18
18
|
environments: docs
|
|
19
19
|
|
|
@@ -21,7 +21,7 @@ jobs:
|
|
|
21
21
|
run: pixi run -e docs docs
|
|
22
22
|
|
|
23
23
|
- name: Upload Artifact
|
|
24
|
-
uses: actions/upload-artifact@
|
|
24
|
+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
|
25
25
|
with:
|
|
26
26
|
name: docs-build
|
|
27
27
|
path: docs/build/
|
|
@@ -17,7 +17,7 @@ jobs:
|
|
|
17
17
|
environment:
|
|
18
18
|
name: docs-deploy
|
|
19
19
|
steps:
|
|
20
|
-
- uses: actions/checkout@
|
|
20
|
+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
21
21
|
|
|
22
22
|
- name: Download Artifact
|
|
23
23
|
uses: dawidd6/action-download-artifact@ac66b43f0e6a346234dd65d4d0c8fbb31cb316e5 # v11
|
|
@@ -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> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Alucascolley" title="Reviewed Pull Requests">👀</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> <a href="#talk-lucascolley" title="Talks">📢</a> <a href="#mentoring-lucascolley" title="Mentoring">🧑🏫</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> <a href="https://github.com/data-apis/array-api-extra/commits?author=mdhaber" title="Tests">⚠️</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> <a href="#tool-j-bowhay" title="Tools">🔧</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>
|
|
@@ -24,7 +24,7 @@ This project exists thanks to the following contributors
|
|
|
24
24
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/izaid"><img src="https://avatars.githubusercontent.com/u/482179?v=4?s=100" width="100px;" alt="Irwin Zaid"/><br /><sub><b>Irwin Zaid</b></sub></a><br /><a href="#ideas-izaid" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
25
25
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jakirkham"><img src="https://avatars.githubusercontent.com/u/3019665?v=4?s=100" width="100px;" alt="jakirkham"/><br /><sub><b>jakirkham</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=jakirkham" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Ajakirkham" title="Reviewed Pull Requests">👀</a></td>
|
|
26
26
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tupui"><img src="https://avatars.githubusercontent.com/u/23188539?v=4?s=100" width="100px;" alt="Pamphile Roy"/><br /><sub><b>Pamphile Roy</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=tupui" title="Code">💻</a></td>
|
|
27
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/OmarManzoor"><img src="https://avatars.githubusercontent.com/u/17495884?v=4?s=100" width="100px;" alt="Omar Salman"/><br /><sub><b>Omar Salman</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Code">💻</a></td>
|
|
27
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/OmarManzoor"><img src="https://avatars.githubusercontent.com/u/17495884?v=4?s=100" width="100px;" alt="Omar Salman"/><br /><sub><b>Omar Salman</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Documentation">📖</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3AOmarManzoor" title="Bug reports">🐛</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Tests">⚠️</a></td>
|
|
28
28
|
</tr>
|
|
29
29
|
<tr>
|
|
30
30
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rgommers/"><img src="https://avatars.githubusercontent.com/u/98330?v=4?s=100" width="100px;" alt="Ralf Gommers"/><br /><sub><b>Ralf Gommers</b></sub></a><br /><a href="#ideas-rgommers" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-rgommers" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Argommers" title="Reviewed Pull Requests">👀</a></td>
|
|
@@ -40,6 +40,9 @@ This project exists thanks to the following contributors
|
|
|
40
40
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pearu"><img src="https://avatars.githubusercontent.com/u/402156?v=4?s=100" width="100px;" alt="Pearu Peterson"/><br /><sub><b>Pearu Peterson</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Apearu" title="Reviewed Pull Requests">👀</a></td>
|
|
41
41
|
<td align="center" valign="top" width="14.28%"><a href="https://paddyroddy.github.io/"><img src="https://avatars.githubusercontent.com/u/15052188?v=4?s=100" width="100px;" alt="Patrick J. Roddy"/><br /><sub><b>Patrick J. Roddy</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=paddyroddy" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=paddyroddy" title="Documentation">📖</a> <a href="#example-paddyroddy" title="Examples">💡</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=paddyroddy" title="Tests">⚠️</a></td>
|
|
42
42
|
<td align="center" valign="top" width="14.28%"><a href="https://amacati.github.io/"><img src="https://avatars.githubusercontent.com/u/57562633?v=4?s=100" width="100px;" alt="Martin Schuck"/><br /><sub><b>Martin Schuck</b></sub></a><br /><a href="#ideas-amacati" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
43
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Enderdead"><img src="https://avatars.githubusercontent.com/u/22777836?v=4?s=100" width="100px;" alt="Gauthier-Clerc François"/><br /><sub><b>Gauthier-Clerc François</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=Enderdead" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=Enderdead" title="Tests">⚠️</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3AEnderdead" title="Bug reports">🐛</a></td>
|
|
44
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/adriagarp"><img src="https://avatars.githubusercontent.com/u/96059447?v=4?s=100" width="100px;" alt="Adrián García Pitarch"/><br /><sub><b>Adrián García Pitarch</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=adriagarp" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=adriagarp" title="Tests">⚠️</a></td>
|
|
45
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cakedev0"><img src="https://avatars.githubusercontent.com/u/25986961?v=4?s=100" width="100px;" alt="Arthur Lacote"/><br /><sub><b>Arthur Lacote</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=cakedev0" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=cakedev0" title="Documentation">📖</a> <a href="#ideas-cakedev0" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=cakedev0" title="Tests">⚠️</a></td>
|
|
43
46
|
</tr>
|
|
44
47
|
</tbody>
|
|
45
48
|
</table>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: array-api-extra
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.1
|
|
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
|
|
@@ -29,7 +29,6 @@ License: MIT License
|
|
|
29
29
|
SOFTWARE.
|
|
30
30
|
License-File: LICENSE
|
|
31
31
|
Classifier: Intended Audience :: Developers
|
|
32
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
33
32
|
Classifier: Operating System :: OS Independent
|
|
34
33
|
Classifier: Programming Language :: Python
|
|
35
34
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -110,7 +109,7 @@ This project exists thanks to the following contributors
|
|
|
110
109
|
<table>
|
|
111
110
|
<tbody>
|
|
112
111
|
<tr>
|
|
113
|
-
<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>
|
|
112
|
+
<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> <a href="#talk-lucascolley" title="Talks">📢</a> <a href="#mentoring-lucascolley" title="Mentoring">🧑🏫</a></td>
|
|
114
113
|
<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> <a href="https://github.com/data-apis/array-api-extra/commits?author=mdhaber" title="Tests">⚠️</a></td>
|
|
115
114
|
<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> <a href="#tool-j-bowhay" title="Tools">🔧</a></td>
|
|
116
115
|
<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>
|
|
@@ -125,7 +124,7 @@ This project exists thanks to the following contributors
|
|
|
125
124
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/izaid"><img src="https://avatars.githubusercontent.com/u/482179?v=4?s=100" width="100px;" alt="Irwin Zaid"/><br /><sub><b>Irwin Zaid</b></sub></a><br /><a href="#ideas-izaid" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
126
125
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jakirkham"><img src="https://avatars.githubusercontent.com/u/3019665?v=4?s=100" width="100px;" alt="jakirkham"/><br /><sub><b>jakirkham</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=jakirkham" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Ajakirkham" title="Reviewed Pull Requests">👀</a></td>
|
|
127
126
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tupui"><img src="https://avatars.githubusercontent.com/u/23188539?v=4?s=100" width="100px;" alt="Pamphile Roy"/><br /><sub><b>Pamphile Roy</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=tupui" title="Code">💻</a></td>
|
|
128
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/OmarManzoor"><img src="https://avatars.githubusercontent.com/u/17495884?v=4?s=100" width="100px;" alt="Omar Salman"/><br /><sub><b>Omar Salman</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Code">💻</a></td>
|
|
127
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/OmarManzoor"><img src="https://avatars.githubusercontent.com/u/17495884?v=4?s=100" width="100px;" alt="Omar Salman"/><br /><sub><b>Omar Salman</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Documentation">📖</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3AOmarManzoor" title="Bug reports">🐛</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Tests">⚠️</a></td>
|
|
129
128
|
</tr>
|
|
130
129
|
<tr>
|
|
131
130
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rgommers/"><img src="https://avatars.githubusercontent.com/u/98330?v=4?s=100" width="100px;" alt="Ralf Gommers"/><br /><sub><b>Ralf Gommers</b></sub></a><br /><a href="#ideas-rgommers" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-rgommers" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Argommers" title="Reviewed Pull Requests">👀</a></td>
|
|
@@ -141,6 +140,9 @@ This project exists thanks to the following contributors
|
|
|
141
140
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pearu"><img src="https://avatars.githubusercontent.com/u/402156?v=4?s=100" width="100px;" alt="Pearu Peterson"/><br /><sub><b>Pearu Peterson</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Apearu" title="Reviewed Pull Requests">👀</a></td>
|
|
142
141
|
<td align="center" valign="top" width="14.28%"><a href="https://paddyroddy.github.io/"><img src="https://avatars.githubusercontent.com/u/15052188?v=4?s=100" width="100px;" alt="Patrick J. Roddy"/><br /><sub><b>Patrick J. Roddy</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=paddyroddy" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=paddyroddy" title="Documentation">📖</a> <a href="#example-paddyroddy" title="Examples">💡</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=paddyroddy" title="Tests">⚠️</a></td>
|
|
143
142
|
<td align="center" valign="top" width="14.28%"><a href="https://amacati.github.io/"><img src="https://avatars.githubusercontent.com/u/57562633?v=4?s=100" width="100px;" alt="Martin Schuck"/><br /><sub><b>Martin Schuck</b></sub></a><br /><a href="#ideas-amacati" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
143
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Enderdead"><img src="https://avatars.githubusercontent.com/u/22777836?v=4?s=100" width="100px;" alt="Gauthier-Clerc François"/><br /><sub><b>Gauthier-Clerc François</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=Enderdead" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=Enderdead" title="Tests">⚠️</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3AEnderdead" title="Bug reports">🐛</a></td>
|
|
144
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/adriagarp"><img src="https://avatars.githubusercontent.com/u/96059447?v=4?s=100" width="100px;" alt="Adrián García Pitarch"/><br /><sub><b>Adrián García Pitarch</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=adriagarp" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=adriagarp" title="Tests">⚠️</a></td>
|
|
145
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cakedev0"><img src="https://avatars.githubusercontent.com/u/25986961?v=4?s=100" width="100px;" alt="Arthur Lacote"/><br /><sub><b>Arthur Lacote</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=cakedev0" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=cakedev0" title="Documentation">📖</a> <a href="#ideas-cakedev0" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=cakedev0" title="Tests">⚠️</a></td>
|
|
144
146
|
</tr>
|
|
145
147
|
</tbody>
|
|
146
148
|
</table>
|
|
@@ -64,7 +64,7 @@ This project exists thanks to the following contributors
|
|
|
64
64
|
<table>
|
|
65
65
|
<tbody>
|
|
66
66
|
<tr>
|
|
67
|
-
<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>
|
|
67
|
+
<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> <a href="#talk-lucascolley" title="Talks">📢</a> <a href="#mentoring-lucascolley" title="Mentoring">🧑🏫</a></td>
|
|
68
68
|
<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> <a href="https://github.com/data-apis/array-api-extra/commits?author=mdhaber" title="Tests">⚠️</a></td>
|
|
69
69
|
<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> <a href="#tool-j-bowhay" title="Tools">🔧</a></td>
|
|
70
70
|
<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>
|
|
@@ -79,7 +79,7 @@ This project exists thanks to the following contributors
|
|
|
79
79
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/izaid"><img src="https://avatars.githubusercontent.com/u/482179?v=4?s=100" width="100px;" alt="Irwin Zaid"/><br /><sub><b>Irwin Zaid</b></sub></a><br /><a href="#ideas-izaid" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
80
80
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jakirkham"><img src="https://avatars.githubusercontent.com/u/3019665?v=4?s=100" width="100px;" alt="jakirkham"/><br /><sub><b>jakirkham</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=jakirkham" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Ajakirkham" title="Reviewed Pull Requests">👀</a></td>
|
|
81
81
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tupui"><img src="https://avatars.githubusercontent.com/u/23188539?v=4?s=100" width="100px;" alt="Pamphile Roy"/><br /><sub><b>Pamphile Roy</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=tupui" title="Code">💻</a></td>
|
|
82
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/OmarManzoor"><img src="https://avatars.githubusercontent.com/u/17495884?v=4?s=100" width="100px;" alt="Omar Salman"/><br /><sub><b>Omar Salman</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Code">💻</a></td>
|
|
82
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/OmarManzoor"><img src="https://avatars.githubusercontent.com/u/17495884?v=4?s=100" width="100px;" alt="Omar Salman"/><br /><sub><b>Omar Salman</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Documentation">📖</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3AOmarManzoor" title="Bug reports">🐛</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=OmarManzoor" title="Tests">⚠️</a></td>
|
|
83
83
|
</tr>
|
|
84
84
|
<tr>
|
|
85
85
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rgommers/"><img src="https://avatars.githubusercontent.com/u/98330?v=4?s=100" width="100px;" alt="Ralf Gommers"/><br /><sub><b>Ralf Gommers</b></sub></a><br /><a href="#ideas-rgommers" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-rgommers" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Argommers" title="Reviewed Pull Requests">👀</a></td>
|
|
@@ -95,6 +95,9 @@ This project exists thanks to the following contributors
|
|
|
95
95
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pearu"><img src="https://avatars.githubusercontent.com/u/402156?v=4?s=100" width="100px;" alt="Pearu Peterson"/><br /><sub><b>Pearu Peterson</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Apearu" title="Reviewed Pull Requests">👀</a></td>
|
|
96
96
|
<td align="center" valign="top" width="14.28%"><a href="https://paddyroddy.github.io/"><img src="https://avatars.githubusercontent.com/u/15052188?v=4?s=100" width="100px;" alt="Patrick J. Roddy"/><br /><sub><b>Patrick J. Roddy</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=paddyroddy" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=paddyroddy" title="Documentation">📖</a> <a href="#example-paddyroddy" title="Examples">💡</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=paddyroddy" title="Tests">⚠️</a></td>
|
|
97
97
|
<td align="center" valign="top" width="14.28%"><a href="https://amacati.github.io/"><img src="https://avatars.githubusercontent.com/u/57562633?v=4?s=100" width="100px;" alt="Martin Schuck"/><br /><sub><b>Martin Schuck</b></sub></a><br /><a href="#ideas-amacati" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
98
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Enderdead"><img src="https://avatars.githubusercontent.com/u/22777836?v=4?s=100" width="100px;" alt="Gauthier-Clerc François"/><br /><sub><b>Gauthier-Clerc François</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=Enderdead" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=Enderdead" title="Tests">⚠️</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3AEnderdead" title="Bug reports">🐛</a></td>
|
|
99
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/adriagarp"><img src="https://avatars.githubusercontent.com/u/96059447?v=4?s=100" width="100px;" alt="Adrián García Pitarch"/><br /><sub><b>Adrián García Pitarch</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=adriagarp" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=adriagarp" title="Tests">⚠️</a></td>
|
|
100
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/cakedev0"><img src="https://avatars.githubusercontent.com/u/25986961?v=4?s=100" width="100px;" alt="Arthur Lacote"/><br /><sub><b>Arthur Lacote</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=cakedev0" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=cakedev0" title="Documentation">📖</a> <a href="#ideas-cakedev0" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=cakedev0" title="Tests">⚠️</a></td>
|
|
98
101
|
</tr>
|
|
99
102
|
</tbody>
|
|
100
103
|
</table>
|
|
@@ -58,7 +58,7 @@ intersphinx_mapping = {
|
|
|
58
58
|
"array-api": ("https://data-apis.org/array-api/draft", None),
|
|
59
59
|
"dask": ("https://docs.dask.org/en/stable", None),
|
|
60
60
|
"numpy": ("https://numpy.org/doc/stable", None),
|
|
61
|
-
"jax": ("https://jax.
|
|
61
|
+
"jax": ("https://docs.jax.dev/en/latest", None),
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
nitpick_ignore = [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
lefthook: pixi run --no-progress --environment=lint lefthook
|
|
1
|
+
lefthook: pixi run --no-progress --environment=lint --frozen lefthook
|
|
2
2
|
|
|
3
3
|
templates:
|
|
4
|
-
run: run --quiet --no-progress --environment=lint
|
|
4
|
+
run: run --quiet --no-progress --environment=lint --frozen
|
|
5
5
|
|
|
6
6
|
colors: true
|
|
7
7
|
|
|
@@ -14,7 +14,6 @@ license.file = "LICENSE"
|
|
|
14
14
|
requires-python = ">=3.10"
|
|
15
15
|
classifiers = [
|
|
16
16
|
"Intended Audience :: Developers",
|
|
17
|
-
"License :: OSI Approved :: MIT License",
|
|
18
17
|
"Operating System :: OS Independent",
|
|
19
18
|
"Programming Language :: Python",
|
|
20
19
|
"Programming Language :: Python :: 3",
|
|
@@ -44,7 +43,7 @@ exclude = ["codecov.yml", "pixi.lock", "RELEASING.md", "renovate.json"]
|
|
|
44
43
|
|
|
45
44
|
# Pixi
|
|
46
45
|
|
|
47
|
-
[tool.pixi.
|
|
46
|
+
[tool.pixi.workspace]
|
|
48
47
|
channels = ["https://prefix.dev/conda-forge"]
|
|
49
48
|
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
|
|
50
49
|
|
|
@@ -55,23 +54,23 @@ array-api-compat = ">=1.12.0,<2"
|
|
|
55
54
|
array-api-extra = { path = ".", editable = true }
|
|
56
55
|
|
|
57
56
|
[tool.pixi.feature.lint.dependencies]
|
|
58
|
-
typing-extensions = ">=4.
|
|
59
|
-
pylint = ">=
|
|
60
|
-
mypy = ">=1.
|
|
61
|
-
basedpyright = ">=1.
|
|
57
|
+
typing-extensions = ">=4.15.0"
|
|
58
|
+
pylint = ">=4.0.2"
|
|
59
|
+
mypy = ">=1.18.2"
|
|
60
|
+
basedpyright = ">=1.33.0"
|
|
62
61
|
numpydoc = ">=1.9.0,<2"
|
|
63
62
|
# import dependencies for mypy:
|
|
64
63
|
array-api-strict = ">=2.4.1,<2.5"
|
|
65
64
|
numpy = ">=2.1.3"
|
|
66
|
-
hypothesis = ">=6.
|
|
67
|
-
dask-core = ">=2025.
|
|
65
|
+
hypothesis = ">=6.142.4"
|
|
66
|
+
dask-core = ">=2025.11.0" # No distributed, tornado, etc.
|
|
68
67
|
dprint = ">=0.50.0,<0.51"
|
|
69
|
-
lefthook = ">=
|
|
70
|
-
ruff = ">=0.
|
|
71
|
-
typos = ">=1.
|
|
72
|
-
actionlint = ">=1.7.
|
|
73
|
-
blacken-docs = ">=1.
|
|
74
|
-
pytest = ">=8.4.
|
|
68
|
+
lefthook = ">=2.0.2,<3"
|
|
69
|
+
ruff = ">=0.14.4,<0.15"
|
|
70
|
+
typos = ">=1.39.0,<2"
|
|
71
|
+
actionlint = ">=1.7.8,<2"
|
|
72
|
+
blacken-docs = ">=1.20.0,<2"
|
|
73
|
+
pytest = ">=8.4.2,<9"
|
|
75
74
|
validate-pyproject = ">=0.24.1,<0.25"
|
|
76
75
|
# NOTE: don't add cupy, jax, pytorch, or sparse here,
|
|
77
76
|
# as they slow down mypy and are not portable across target OSs
|
|
@@ -94,9 +93,9 @@ numpydoc = { cmd = "numpydoc lint", description = "Validate docstrings with nump
|
|
|
94
93
|
lint = { cmd = "lefthook run pre-commit --all-files --force", description = "Run all linters" }
|
|
95
94
|
|
|
96
95
|
[tool.pixi.feature.tests.dependencies]
|
|
97
|
-
pytest = ">=8.4.
|
|
98
|
-
pytest-cov = ">=
|
|
99
|
-
hypothesis = ">=6.
|
|
96
|
+
pytest = ">=8.4.2"
|
|
97
|
+
pytest-cov = ">=7.0.0"
|
|
98
|
+
hypothesis = ">=6.142.4"
|
|
100
99
|
array-api-strict = ">=2.4.1,<2.5"
|
|
101
100
|
numpy = ">=1.22.0"
|
|
102
101
|
|
|
@@ -121,9 +120,9 @@ myst-parser = ">=4.0.1"
|
|
|
121
120
|
sphinx-copybutton = ">=0.5.2"
|
|
122
121
|
sphinx-autodoc-typehints = ">=1.25.3"
|
|
123
122
|
# Needed to import parsed modules with autodoc
|
|
124
|
-
dask-core = ">=2025.
|
|
125
|
-
pytest = ">=8.4.
|
|
126
|
-
typing-extensions = ">=4.
|
|
123
|
+
dask-core = ">=2025.11.0" # No distributed, tornado, etc.
|
|
124
|
+
pytest = ">=8.4.2"
|
|
125
|
+
typing-extensions = ">=4.15.0"
|
|
127
126
|
numpy = ">=2.1.3"
|
|
128
127
|
|
|
129
128
|
[tool.pixi.feature.docs.tasks]
|
|
@@ -151,7 +150,7 @@ numpy = "=1.22.0"
|
|
|
151
150
|
# Note: JAX and PyTorch will install CPU variants.
|
|
152
151
|
[tool.pixi.feature.backends.dependencies]
|
|
153
152
|
pytorch = ">=2.7.1"
|
|
154
|
-
dask-core = ">=2025.
|
|
153
|
+
dask-core = ">=2025.11.0" # No distributed, tornado, etc.
|
|
155
154
|
sparse = ">=0.17.0"
|
|
156
155
|
|
|
157
156
|
[tool.pixi.feature.backends.target.linux-64.dependencies]
|
|
@@ -197,14 +196,14 @@ pytorch = { version = ">=2.7.1", build = "cuda12*" }
|
|
|
197
196
|
[tool.pixi.feature.cuda-backends.target.win-64.dependencies]
|
|
198
197
|
cupy = ">=13.6.0"
|
|
199
198
|
# jaxlib = { version = "*", build = "cuda12*" } # unavailable
|
|
200
|
-
pytorch = { version = ">=2.
|
|
199
|
+
pytorch = { version = ">=2.8.0", build = "cuda12*" }
|
|
201
200
|
|
|
202
201
|
[tool.pixi.feature.nogil.dependencies]
|
|
203
202
|
python-freethreading = "~=3.13.0"
|
|
204
|
-
pytest-run-parallel = ">=0.
|
|
205
|
-
numpy = ">=2.3.
|
|
203
|
+
pytest-run-parallel = ">=0.7.1"
|
|
204
|
+
numpy = ">=2.3.4"
|
|
206
205
|
# pytorch = "*" # Not available on Python 3.13t yet
|
|
207
|
-
dask-core = ">=2025.
|
|
206
|
+
dask-core = ">=2025.11.0" # No distributed, tornado, etc.
|
|
208
207
|
# sparse = "*" # numba not available on Python 3.13t yet
|
|
209
208
|
# jax = "*" # ml_dtypes not available on Python 3.13t yet
|
|
210
209
|
|
|
@@ -1,28 +1,37 @@
|
|
|
1
1
|
"""Extra array functions built on top of the array API standard."""
|
|
2
2
|
|
|
3
|
-
from ._delegation import
|
|
3
|
+
from ._delegation import (
|
|
4
|
+
argpartition,
|
|
5
|
+
atleast_nd,
|
|
6
|
+
cov,
|
|
7
|
+
create_diagonal,
|
|
8
|
+
expand_dims,
|
|
9
|
+
isclose,
|
|
10
|
+
isin,
|
|
11
|
+
nan_to_num,
|
|
12
|
+
one_hot,
|
|
13
|
+
pad,
|
|
14
|
+
partition,
|
|
15
|
+
setdiff1d,
|
|
16
|
+
sinc,
|
|
17
|
+
)
|
|
4
18
|
from ._lib._at import at
|
|
5
19
|
from ._lib._funcs import (
|
|
6
20
|
apply_where,
|
|
7
|
-
atleast_nd,
|
|
8
21
|
broadcast_shapes,
|
|
9
|
-
cov,
|
|
10
|
-
create_diagonal,
|
|
11
22
|
default_dtype,
|
|
12
|
-
expand_dims,
|
|
13
23
|
kron,
|
|
14
24
|
nunique,
|
|
15
|
-
setdiff1d,
|
|
16
|
-
sinc,
|
|
17
25
|
)
|
|
18
26
|
from ._lib._lazy import lazy_apply
|
|
19
27
|
|
|
20
|
-
__version__ = "0.9.
|
|
28
|
+
__version__ = "0.9.1"
|
|
21
29
|
|
|
22
30
|
# pylint: disable=duplicate-code
|
|
23
31
|
__all__ = [
|
|
24
32
|
"__version__",
|
|
25
33
|
"apply_where",
|
|
34
|
+
"argpartition",
|
|
26
35
|
"at",
|
|
27
36
|
"atleast_nd",
|
|
28
37
|
"broadcast_shapes",
|
|
@@ -31,12 +40,14 @@ __all__ = [
|
|
|
31
40
|
"default_dtype",
|
|
32
41
|
"expand_dims",
|
|
33
42
|
"isclose",
|
|
43
|
+
"isin",
|
|
34
44
|
"kron",
|
|
35
45
|
"lazy_apply",
|
|
36
46
|
"nan_to_num",
|
|
37
47
|
"nunique",
|
|
38
48
|
"one_hot",
|
|
39
49
|
"pad",
|
|
50
|
+
"partition",
|
|
40
51
|
"setdiff1d",
|
|
41
52
|
"sinc",
|
|
42
53
|
]
|