From 4038c668529817e9c6a1ed581f54cfadb082d8e6 Mon Sep 17 00:00:00 2001 From: jorenham Date: Wed, 2 Jul 2025 22:59:15 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=9D=20mention=20that=20this=20pack?= =?UTF-8?q?age=20isn't=20stable=20yet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a81978d..4cacf6f 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,12 @@ --- +> [!WARNING] +> This package is in early development and is not yet stable. It is intended as a typing toolkit +> for working the [Python array API standard](https://data-apis.org/array-api/latest/), but it +> may change significantly in the future. + + ## Installation ```bash @@ -49,4 +55,4 @@ pip install -e . # editable mode >>> func(np.array([1, 2, 3])) array([1, 2, 3]) -``` \ No newline at end of file +``` From 8ed681e3a75354a60c4a94e91c18068050929e87 Mon Sep 17 00:00:00 2001 From: Joren Hammudoglu Date: Wed, 2 Jul 2025 23:03:52 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20use=20words=20where=20?= =?UTF-8?q?they=20should=20be=20used?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Nathaniel Starkman Signed-off-by: Joren Hammudoglu --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cacf6f..b626a62 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ > [!WARNING] > This package is in early development and is not yet stable. It is intended as a typing toolkit -> for working the [Python array API standard](https://data-apis.org/array-api/latest/), but it +> for working with the [Python array API standard](https://data-apis.org/array-api/latest/), but it > may change significantly in the future.