array-api-extra 0.7.0__tar.gz → 0.7.2__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.7.0 → array_api_extra-0.7.2}/.all-contributorsrc +16 -2
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/.github/workflows/cd.yml +8 -5
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/.github/workflows/ci.yml +12 -9
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/.github/workflows/docs-build.yml +6 -3
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/.github/workflows/docs-deploy.yml +6 -3
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/.pre-commit-config.yaml +0 -1
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/CONTRIBUTORS.md +5 -2
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/PKG-INFO +12 -6
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/README.md +10 -4
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/codecov.yml +3 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/docs/conf.py +2 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/docs/index.md +3 -1
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/pixi.lock +7570 -5376
- array_api_extra-0.7.2/pyproject.toml +349 -0
- array_api_extra-0.7.2/renovate.json +71 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/__init__.py +1 -1
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_delegation.py +29 -32
- array_api_extra-0.7.2/src/array_api_extra/_lib/__init__.py +1 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_lib/_at.py +19 -7
- array_api_extra-0.7.2/src/array_api_extra/_lib/_backends.py +46 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_lib/_funcs.py +43 -26
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_lib/_lazy.py +13 -17
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_lib/_testing.py +40 -15
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_lib/_utils/_compat.py +3 -0
- array_api_extra-0.7.2/src/array_api_extra/_lib/_utils/_compat.pyi +45 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_lib/_utils/_helpers.py +37 -3
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/testing.py +20 -21
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/tests/conftest.py +63 -19
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/tests/test_at.py +34 -10
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/tests/test_funcs.py +64 -16
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/tests/test_helpers.py +16 -6
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/tests/test_lazy.py +55 -31
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/tests/test_testing.py +29 -21
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/vendor_tests/test_vendor.py +2 -1
- array_api_extra-0.7.0/.github/dependabot.yml +0 -11
- array_api_extra-0.7.0/.github/workflows/dependabot-auto-merge.yml +0 -23
- array_api_extra-0.7.0/docs/requirements.txt +0 -5
- array_api_extra-0.7.0/pyproject.toml +0 -320
- array_api_extra-0.7.0/src/array_api_extra/_lib/__init__.py +0 -5
- array_api_extra-0.7.0/src/array_api_extra/_lib/_backends.py +0 -51
- array_api_extra-0.7.0/src/array_api_extra/_lib/_utils/_compat.pyi +0 -40
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/.editorconfig +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/.gitattributes +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/.gitignore +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/LICENSE +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/RELEASING.md +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/docs/api-lazy.md +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/docs/api-reference.md +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/docs/contributing.md +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/docs/contributors.md +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_lib/_utils/__init__.py +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_lib/_utils/_typing.py +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/_lib/_utils/_typing.pyi +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/src/array_api_extra/py.typed +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/tests/__init__.py +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/tests/test_version.py +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/vendor_tests/__init__.py +0 -0
- {array_api_extra-0.7.0 → array_api_extra-0.7.2}/vendor_tests/_array_api_compat_vendor.py +0 -0
|
@@ -48,7 +48,8 @@
|
|
|
48
48
|
"profile": "https://github.com/j-bowhay",
|
|
49
49
|
"contributions": [
|
|
50
50
|
"code",
|
|
51
|
-
"review"
|
|
51
|
+
"review",
|
|
52
|
+
"tool"
|
|
52
53
|
]
|
|
53
54
|
},
|
|
54
55
|
{
|
|
@@ -101,7 +102,10 @@
|
|
|
101
102
|
"tool",
|
|
102
103
|
"test",
|
|
103
104
|
"example",
|
|
104
|
-
"bug"
|
|
105
|
+
"bug",
|
|
106
|
+
"ideas",
|
|
107
|
+
"review",
|
|
108
|
+
"maintenance"
|
|
105
109
|
]
|
|
106
110
|
},
|
|
107
111
|
{
|
|
@@ -225,6 +229,16 @@
|
|
|
225
229
|
"code",
|
|
226
230
|
"test"
|
|
227
231
|
]
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"login": "lithomas1",
|
|
235
|
+
"name": "Thomas Li",
|
|
236
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/47963215?v=4",
|
|
237
|
+
"profile": "https://github.com/lithomas1",
|
|
238
|
+
"contributions": [
|
|
239
|
+
"bug",
|
|
240
|
+
"tool"
|
|
241
|
+
]
|
|
228
242
|
}
|
|
229
243
|
]
|
|
230
244
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
name: CD
|
|
2
2
|
|
|
3
|
+
permissions:
|
|
4
|
+
contents: read
|
|
5
|
+
|
|
3
6
|
on:
|
|
4
7
|
workflow_dispatch:
|
|
5
8
|
pull_request:
|
|
@@ -14,11 +17,11 @@ jobs:
|
|
|
14
17
|
dist:
|
|
15
18
|
runs-on: ubuntu-latest
|
|
16
19
|
steps:
|
|
17
|
-
- uses: actions/checkout@v4
|
|
20
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
18
21
|
with:
|
|
19
22
|
fetch-depth: 0
|
|
20
23
|
|
|
21
|
-
- uses: hynek/build-and-inspect-python-package@v2
|
|
24
|
+
- uses: hynek/build-and-inspect-python-package@b5076c307dc91924a82ad150cdd1533b444d3310 # v2.12.0
|
|
22
25
|
|
|
23
26
|
publish:
|
|
24
27
|
needs: [dist]
|
|
@@ -31,14 +34,14 @@ jobs:
|
|
|
31
34
|
if: github.event_name == 'release' && github.event.action == 'published'
|
|
32
35
|
|
|
33
36
|
steps:
|
|
34
|
-
- uses: actions/download-artifact@v4
|
|
37
|
+
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
|
|
35
38
|
with:
|
|
36
39
|
name: Packages
|
|
37
40
|
path: dist
|
|
38
41
|
|
|
39
42
|
- name: Generate artifact attestation for sdist and wheel
|
|
40
|
-
uses: actions/attest-build-provenance@v2.2.3
|
|
43
|
+
uses: actions/attest-build-provenance@c074443f1aee8d4aeeae555aebba3282517141b2 # v2.2.3
|
|
41
44
|
with:
|
|
42
45
|
subject-path: "dist/*"
|
|
43
46
|
|
|
44
|
-
- uses: pypa/gh-action-pypi-publish@
|
|
47
|
+
- uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
name: CI
|
|
2
2
|
|
|
3
|
+
permissions:
|
|
4
|
+
contents: read
|
|
5
|
+
|
|
3
6
|
on:
|
|
4
7
|
workflow_dispatch:
|
|
5
8
|
pull_request:
|
|
@@ -21,16 +24,16 @@ jobs:
|
|
|
21
24
|
name: Format
|
|
22
25
|
runs-on: ubuntu-latest
|
|
23
26
|
steps:
|
|
24
|
-
- uses: actions/checkout@v4
|
|
27
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
25
28
|
with:
|
|
26
29
|
fetch-depth: 0
|
|
27
|
-
- uses: actions/setup-python@v5
|
|
30
|
+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
|
|
28
31
|
with:
|
|
29
|
-
python-version: "3.
|
|
30
|
-
- uses: pre-commit/action@v3.0.1
|
|
32
|
+
python-version: "3.13.2"
|
|
33
|
+
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
|
|
31
34
|
with:
|
|
32
35
|
extra_args: --hook-stage manual --all-files
|
|
33
|
-
- uses: prefix-dev/setup-pixi@v0.8.
|
|
36
|
+
- uses: prefix-dev/setup-pixi@dbaed5efa0bd33d6bd6d162bec8a06d8fc43c807 # v0.8.5
|
|
34
37
|
with:
|
|
35
38
|
pixi-version: v0.42.1
|
|
36
39
|
cache: true
|
|
@@ -48,15 +51,15 @@ jobs:
|
|
|
48
51
|
strategy:
|
|
49
52
|
fail-fast: false
|
|
50
53
|
matrix:
|
|
51
|
-
environment: [tests-py310, tests-py313, tests-backends]
|
|
54
|
+
environment: [tests-py310, tests-py313, tests-numpy1, tests-backends]
|
|
52
55
|
runs-on: [ubuntu-latest]
|
|
53
56
|
|
|
54
57
|
steps:
|
|
55
|
-
- uses: actions/checkout@v4
|
|
58
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
56
59
|
with:
|
|
57
60
|
fetch-depth: 0
|
|
58
61
|
|
|
59
|
-
- uses: prefix-dev/setup-pixi@v0.8.
|
|
62
|
+
- uses: prefix-dev/setup-pixi@dbaed5efa0bd33d6bd6d162bec8a06d8fc43c807 # v0.8.5
|
|
60
63
|
with:
|
|
61
64
|
pixi-version: v0.42.1
|
|
62
65
|
cache: true
|
|
@@ -66,6 +69,6 @@ jobs:
|
|
|
66
69
|
run: pixi run -e ${{ matrix.environment }} tests-ci
|
|
67
70
|
|
|
68
71
|
- name: Upload coverage report
|
|
69
|
-
uses: codecov/codecov-action@v5.4.0
|
|
72
|
+
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5.4.0
|
|
70
73
|
with:
|
|
71
74
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
name: Docs Build
|
|
2
2
|
|
|
3
|
+
permissions:
|
|
4
|
+
contents: read
|
|
5
|
+
|
|
3
6
|
on: [push, pull_request]
|
|
4
7
|
|
|
5
8
|
jobs:
|
|
6
9
|
docs-build:
|
|
7
10
|
runs-on: ubuntu-latest
|
|
8
11
|
steps:
|
|
9
|
-
- uses: actions/checkout@v4
|
|
10
|
-
- uses: prefix-dev/setup-pixi@v0.8.
|
|
12
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
13
|
+
- uses: prefix-dev/setup-pixi@dbaed5efa0bd33d6bd6d162bec8a06d8fc43c807 # v0.8.5
|
|
11
14
|
with:
|
|
12
15
|
pixi-version: v0.42.1
|
|
13
16
|
cache: true
|
|
@@ -15,7 +18,7 @@ jobs:
|
|
|
15
18
|
- name: Build Docs
|
|
16
19
|
run: pixi run -e docs docs
|
|
17
20
|
- name: Upload Artifact
|
|
18
|
-
uses: actions/upload-artifact@v4
|
|
21
|
+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
19
22
|
with:
|
|
20
23
|
name: docs-build
|
|
21
24
|
path: docs/build/
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
name: Docs Deploy
|
|
2
2
|
|
|
3
|
+
permissions:
|
|
4
|
+
contents: write # needed for the deploy step
|
|
5
|
+
|
|
3
6
|
on:
|
|
4
7
|
workflow_run:
|
|
5
8
|
workflows: ["Docs Build"]
|
|
@@ -14,9 +17,9 @@ jobs:
|
|
|
14
17
|
environment:
|
|
15
18
|
name: docs-deploy
|
|
16
19
|
steps:
|
|
17
|
-
- uses: actions/checkout@v4
|
|
20
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
18
21
|
- name: Download Artifact
|
|
19
|
-
uses: dawidd6/action-download-artifact@v9
|
|
22
|
+
uses: dawidd6/action-download-artifact@07ab29fd4a977ae4d2b275087cf67563dfdf0295 # v9
|
|
20
23
|
with:
|
|
21
24
|
workflow: docs-build.yml
|
|
22
25
|
name: docs-build
|
|
@@ -26,7 +29,7 @@ jobs:
|
|
|
26
29
|
# See
|
|
27
30
|
# https://github.com/JamesIves/github-pages-deploy-action/tree/dev#using-an-ssh-deploy-key-
|
|
28
31
|
- name: Deploy
|
|
29
|
-
uses: JamesIves/github-pages-deploy-action@v4
|
|
32
|
+
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
|
|
30
33
|
with:
|
|
31
34
|
folder: docs/build/
|
|
32
35
|
ssh-key: ${{ secrets.DEPLOY_KEY }}
|
|
@@ -11,14 +11,14 @@ This project exists thanks to the following contributors
|
|
|
11
11
|
<tr>
|
|
12
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
|
-
<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>
|
|
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>
|
|
16
16
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/betatim"><img src="https://avatars.githubusercontent.com/u/1448859?v=4?s=100" width="100px;" alt="Tim Head"/><br /><sub><b>Tim Head</b></sub></a><br /><a href="#ideas-betatim" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
17
17
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/stdlib-js/stdlib"><img src="https://avatars.githubusercontent.com/u/2643044?v=4?s=100" width="100px;" alt="Athan"/><br /><sub><b>Athan</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Akgryte" title="Reviewed Pull Requests">👀</a> <a href="#ideas-kgryte" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
18
18
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/vnmabus"><img src="https://avatars.githubusercontent.com/u/2364173?v=4?s=100" width="100px;" alt="Carlos Ramos Carreño"/><br /><sub><b>Carlos Ramos Carreño</b></sub></a><br /><a href="#ideas-vnmabus" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
19
19
|
</tr>
|
|
20
20
|
<tr>
|
|
21
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/crusaderky"><img src="https://avatars.githubusercontent.com/u/6213168?v=4?s=100" width="100px;" alt="Guido Imperiale"/><br /><sub><b>Guido Imperiale</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Documentation">📖</a> <a href="#tool-crusaderky" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Tests">⚠️</a> <a href="#example-crusaderky" title="Examples">💡</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Acrusaderky" title="Bug reports">🐛</a></td>
|
|
21
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/crusaderky"><img src="https://avatars.githubusercontent.com/u/6213168?v=4?s=100" width="100px;" alt="Guido Imperiale"/><br /><sub><b>Guido Imperiale</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Documentation">📖</a> <a href="#tool-crusaderky" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Tests">⚠️</a> <a href="#example-crusaderky" title="Examples">💡</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Acrusaderky" title="Bug reports">🐛</a> <a href="#ideas-crusaderky" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Acrusaderky" title="Reviewed Pull Requests">👀</a> <a href="#maintenance-crusaderky" title="Maintenance">🚧</a></td>
|
|
22
22
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jorenham"><img src="https://avatars.githubusercontent.com/u/6208662?v=4?s=100" width="100px;" alt="Joren Hammudoglu"/><br /><sub><b>Joren Hammudoglu</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Ajorenham" title="Reviewed Pull Requests">👀</a></td>
|
|
23
23
|
<td align="center" valign="top" width="14.28%"><a href="https://www.thomasjpfan.com/"><img src="https://avatars.githubusercontent.com/u/5402633?v=4?s=100" width="100px;" alt="Thomas J. Fan"/><br /><sub><b>Thomas J. Fan</b></sub></a><br /><a href="#ideas-thomasjpfan" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
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>
|
|
@@ -35,6 +35,9 @@ This project exists thanks to the following contributors
|
|
|
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
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>
|
|
37
37
|
</tr>
|
|
38
|
+
<tr>
|
|
39
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lithomas1"><img src="https://avatars.githubusercontent.com/u/47963215?v=4?s=100" width="100px;" alt="Thomas Li"/><br /><sub><b>Thomas Li</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Alithomas1" title="Bug reports">🐛</a> <a href="#tool-lithomas1" title="Tools">🔧</a></td>
|
|
40
|
+
</tr>
|
|
38
41
|
</tbody>
|
|
39
42
|
</table>
|
|
40
43
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: array-api-extra
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.2
|
|
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.11
|
|
43
|
+
Requires-Dist: array-api-compat<2,>=1.11.2
|
|
44
44
|
Description-Content-Type: text/markdown
|
|
45
45
|
|
|
46
46
|
# array-api-extra
|
|
@@ -49,13 +49,14 @@ Description-Content-Type: text/markdown
|
|
|
49
49
|
[![docs - here!][docs-badge]][docs-link]
|
|
50
50
|
[](https://pixi.sh)
|
|
51
51
|
[](#contributors)
|
|
52
|
-
[](https://typing.python.org/)
|
|
53
53
|
[](https://codecov.io/github/data-apis/array-api-extra)
|
|
54
54
|
|
|
55
55
|
[![PyPI version][pypi-version]][pypi-link]
|
|
56
56
|
[![Conda-Forge][conda-badge]][conda-link]
|
|
57
57
|
[![PyPI platforms][pypi-platforms]][pypi-link]
|
|
58
58
|
[](https://jacobtomlinson.dev/effver)
|
|
59
|
+
[](https://scientific-python.org/specs/spec-0008/)
|
|
59
60
|
|
|
60
61
|
<!-- SPHINX-START -->
|
|
61
62
|
|
|
@@ -78,8 +79,10 @@ Extra array functions built on top of the array API standard.
|
|
|
78
79
|
|
|
79
80
|
Used by:
|
|
80
81
|
|
|
81
|
-
- [SciPy](https://github.com/scipy/scipy)
|
|
82
|
+
- [SciPy](https://github.com/scipy/scipy) — Fundamental algorithms for
|
|
82
83
|
scientific computing.
|
|
84
|
+
- [scikit-learn](https://github.com/scikit-learn/scikit-learn) — Machine
|
|
85
|
+
Learning in Python.
|
|
83
86
|
- _your library? Let us know!_
|
|
84
87
|
|
|
85
88
|
## Installation
|
|
@@ -108,14 +111,14 @@ This project exists thanks to the following contributors
|
|
|
108
111
|
<tr>
|
|
109
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></td>
|
|
110
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></td>
|
|
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>
|
|
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>
|
|
112
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>
|
|
113
116
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/betatim"><img src="https://avatars.githubusercontent.com/u/1448859?v=4?s=100" width="100px;" alt="Tim Head"/><br /><sub><b>Tim Head</b></sub></a><br /><a href="#ideas-betatim" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
114
117
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/stdlib-js/stdlib"><img src="https://avatars.githubusercontent.com/u/2643044?v=4?s=100" width="100px;" alt="Athan"/><br /><sub><b>Athan</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Akgryte" title="Reviewed Pull Requests">👀</a> <a href="#ideas-kgryte" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
115
118
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/vnmabus"><img src="https://avatars.githubusercontent.com/u/2364173?v=4?s=100" width="100px;" alt="Carlos Ramos Carreño"/><br /><sub><b>Carlos Ramos Carreño</b></sub></a><br /><a href="#ideas-vnmabus" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
116
119
|
</tr>
|
|
117
120
|
<tr>
|
|
118
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/crusaderky"><img src="https://avatars.githubusercontent.com/u/6213168?v=4?s=100" width="100px;" alt="Guido Imperiale"/><br /><sub><b>Guido Imperiale</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Documentation">📖</a> <a href="#tool-crusaderky" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Tests">⚠️</a> <a href="#example-crusaderky" title="Examples">💡</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Acrusaderky" title="Bug reports">🐛</a></td>
|
|
121
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/crusaderky"><img src="https://avatars.githubusercontent.com/u/6213168?v=4?s=100" width="100px;" alt="Guido Imperiale"/><br /><sub><b>Guido Imperiale</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Documentation">📖</a> <a href="#tool-crusaderky" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Tests">⚠️</a> <a href="#example-crusaderky" title="Examples">💡</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Acrusaderky" title="Bug reports">🐛</a> <a href="#ideas-crusaderky" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Acrusaderky" title="Reviewed Pull Requests">👀</a> <a href="#maintenance-crusaderky" title="Maintenance">🚧</a></td>
|
|
119
122
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jorenham"><img src="https://avatars.githubusercontent.com/u/6208662?v=4?s=100" width="100px;" alt="Joren Hammudoglu"/><br /><sub><b>Joren Hammudoglu</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Ajorenham" title="Reviewed Pull Requests">👀</a></td>
|
|
120
123
|
<td align="center" valign="top" width="14.28%"><a href="https://www.thomasjpfan.com/"><img src="https://avatars.githubusercontent.com/u/5402633?v=4?s=100" width="100px;" alt="Thomas J. Fan"/><br /><sub><b>Thomas J. Fan</b></sub></a><br /><a href="#ideas-thomasjpfan" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
121
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>
|
|
@@ -132,6 +135,9 @@ This project exists thanks to the following contributors
|
|
|
132
135
|
<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
136
|
<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>
|
|
134
137
|
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lithomas1"><img src="https://avatars.githubusercontent.com/u/47963215?v=4?s=100" width="100px;" alt="Thomas Li"/><br /><sub><b>Thomas Li</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Alithomas1" title="Bug reports">🐛</a> <a href="#tool-lithomas1" title="Tools">🔧</a></td>
|
|
140
|
+
</tr>
|
|
135
141
|
</tbody>
|
|
136
142
|
</table>
|
|
137
143
|
|
|
@@ -4,13 +4,14 @@
|
|
|
4
4
|
[![docs - here!][docs-badge]][docs-link]
|
|
5
5
|
[](https://pixi.sh)
|
|
6
6
|
[](#contributors)
|
|
7
|
-
[](https://typing.python.org/)
|
|
8
8
|
[](https://codecov.io/github/data-apis/array-api-extra)
|
|
9
9
|
|
|
10
10
|
[![PyPI version][pypi-version]][pypi-link]
|
|
11
11
|
[![Conda-Forge][conda-badge]][conda-link]
|
|
12
12
|
[![PyPI platforms][pypi-platforms]][pypi-link]
|
|
13
13
|
[](https://jacobtomlinson.dev/effver)
|
|
14
|
+
[](https://scientific-python.org/specs/spec-0008/)
|
|
14
15
|
|
|
15
16
|
<!-- SPHINX-START -->
|
|
16
17
|
|
|
@@ -33,8 +34,10 @@ Extra array functions built on top of the array API standard.
|
|
|
33
34
|
|
|
34
35
|
Used by:
|
|
35
36
|
|
|
36
|
-
- [SciPy](https://github.com/scipy/scipy)
|
|
37
|
+
- [SciPy](https://github.com/scipy/scipy) — Fundamental algorithms for
|
|
37
38
|
scientific computing.
|
|
39
|
+
- [scikit-learn](https://github.com/scikit-learn/scikit-learn) — Machine
|
|
40
|
+
Learning in Python.
|
|
38
41
|
- _your library? Let us know!_
|
|
39
42
|
|
|
40
43
|
## Installation
|
|
@@ -63,14 +66,14 @@ This project exists thanks to the following contributors
|
|
|
63
66
|
<tr>
|
|
64
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>
|
|
65
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></td>
|
|
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>
|
|
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>
|
|
67
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>
|
|
68
71
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/betatim"><img src="https://avatars.githubusercontent.com/u/1448859?v=4?s=100" width="100px;" alt="Tim Head"/><br /><sub><b>Tim Head</b></sub></a><br /><a href="#ideas-betatim" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
69
72
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/stdlib-js/stdlib"><img src="https://avatars.githubusercontent.com/u/2643044?v=4?s=100" width="100px;" alt="Athan"/><br /><sub><b>Athan</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Akgryte" title="Reviewed Pull Requests">👀</a> <a href="#ideas-kgryte" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
70
73
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/vnmabus"><img src="https://avatars.githubusercontent.com/u/2364173?v=4?s=100" width="100px;" alt="Carlos Ramos Carreño"/><br /><sub><b>Carlos Ramos Carreño</b></sub></a><br /><a href="#ideas-vnmabus" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
71
74
|
</tr>
|
|
72
75
|
<tr>
|
|
73
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/crusaderky"><img src="https://avatars.githubusercontent.com/u/6213168?v=4?s=100" width="100px;" alt="Guido Imperiale"/><br /><sub><b>Guido Imperiale</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Documentation">📖</a> <a href="#tool-crusaderky" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Tests">⚠️</a> <a href="#example-crusaderky" title="Examples">💡</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Acrusaderky" title="Bug reports">🐛</a></td>
|
|
76
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/crusaderky"><img src="https://avatars.githubusercontent.com/u/6213168?v=4?s=100" width="100px;" alt="Guido Imperiale"/><br /><sub><b>Guido Imperiale</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Code">💻</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Documentation">📖</a> <a href="#tool-crusaderky" title="Tools">🔧</a> <a href="https://github.com/data-apis/array-api-extra/commits?author=crusaderky" title="Tests">⚠️</a> <a href="#example-crusaderky" title="Examples">💡</a> <a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Acrusaderky" title="Bug reports">🐛</a> <a href="#ideas-crusaderky" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Acrusaderky" title="Reviewed Pull Requests">👀</a> <a href="#maintenance-crusaderky" title="Maintenance">🚧</a></td>
|
|
74
77
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jorenham"><img src="https://avatars.githubusercontent.com/u/6208662?v=4?s=100" width="100px;" alt="Joren Hammudoglu"/><br /><sub><b>Joren Hammudoglu</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/pulls?q=is%3Apr+reviewed-by%3Ajorenham" title="Reviewed Pull Requests">👀</a></td>
|
|
75
78
|
<td align="center" valign="top" width="14.28%"><a href="https://www.thomasjpfan.com/"><img src="https://avatars.githubusercontent.com/u/5402633?v=4?s=100" width="100px;" alt="Thomas J. Fan"/><br /><sub><b>Thomas J. Fan</b></sub></a><br /><a href="#ideas-thomasjpfan" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
76
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>
|
|
@@ -87,6 +90,9 @@ This project exists thanks to the following contributors
|
|
|
87
90
|
<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
91
|
<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>
|
|
89
92
|
</tr>
|
|
93
|
+
<tr>
|
|
94
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lithomas1"><img src="https://avatars.githubusercontent.com/u/47963215?v=4?s=100" width="100px;" alt="Thomas Li"/><br /><sub><b>Thomas Li</b></sub></a><br /><a href="https://github.com/data-apis/array-api-extra/issues?q=author%3Alithomas1" title="Bug reports">🐛</a> <a href="#tool-lithomas1" title="Tools">🔧</a></td>
|
|
95
|
+
</tr>
|
|
90
96
|
</tbody>
|
|
91
97
|
</table>
|
|
92
98
|
|
|
@@ -4,6 +4,8 @@ import importlib.metadata
|
|
|
4
4
|
from typing import Any
|
|
5
5
|
|
|
6
6
|
project = "array-api-extra"
|
|
7
|
+
copyright = "Consortium for Python Data API Standards"
|
|
8
|
+
author = "Consortium for Python Data API Standards"
|
|
7
9
|
version = release = importlib.metadata.version("array_api_extra")
|
|
8
10
|
|
|
9
11
|
extensions = [
|
|
@@ -23,8 +23,10 @@ themselves.
|
|
|
23
23
|
|
|
24
24
|
It is currently used by:
|
|
25
25
|
|
|
26
|
-
- [SciPy](https://github.com/scipy/scipy)
|
|
26
|
+
- [SciPy](https://github.com/scipy/scipy) — Fundamental algorithms for
|
|
27
27
|
scientific computing.
|
|
28
|
+
- [scikit-learn](https://github.com/scikit-learn/scikit-learn) — Machine
|
|
29
|
+
Learning in Python.
|
|
28
30
|
- _your library? Let us know!_
|
|
29
31
|
|
|
30
32
|
(installation)=
|