Skip to content

Commit 3b39255

Browse files
committed
Add a README
1 parent fbefd42 commit 3b39255

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
array-api-strict
2+
================
3+
4+
A strict, minimal implementation of the [Python array
5+
API](https://data-apis.org/array-api/latest/)
6+
7+
Previously this implementation was available as `numpy.array_api`, but it was
8+
moved to a separate package for NumPy 2.0.
9+
10+
Note: the history of this repo prior to commit
11+
fbefd42e4d11e9be20e0a4785f2619fc1aef1e7c was generated automatically
12+
from the numpy git history, using the following
13+
[git-filter-repo](https://github.com/newren/git-filter-repo) command:
14+
15+
```
16+
git_filter_repo.py --path numpy/array_api/ --path-rename numpy/array_api:array_api_strict --replace-text <(echo -e "numpy.array_api==>array_api_strict\nfrom ..core==>from numpy.core\nfrom .._core==>from numpy._core\nfrom ..linalg==>from numpy.linalg\nfrom numpy import array_api==>import array_api_strict") --commit-callback 'commit.message = commit.message.rstrip() + b"\n\nOriginal NumPy Commit: " + commit.original_id'
17+
```

0 commit comments

Comments
 (0)