From 67ec13fc300a7486dbe6aabc49e17e59b23b3c60 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Fri, 31 Mar 2023 16:42:14 -0600 Subject: [PATCH 1/4] Add note about torch linalg testing on CI --- .github/workflows/array-api-tests-torch.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/array-api-tests-torch.yml b/.github/workflows/array-api-tests-torch.yml index fe9606fc..3f87ecae 100644 --- a/.github/workflows/array-api-tests-torch.yml +++ b/.github/workflows/array-api-tests-torch.yml @@ -7,4 +7,6 @@ jobs: uses: ./.github/workflows/array-api-tests.yml with: package-name: torch + # Proper linalg testing will require + # https://github.com/data-apis/array-api-tests/pull/101 pytest-extra-args: "--disable-extension linalg" From 04dea11b5ecd97c9d0b1dbf4776bd0fdb0d83ef6 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Fri, 31 Mar 2023 16:43:48 -0600 Subject: [PATCH 2/4] Update changelog for a 1.2 release --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3af5c592..fd739c6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# 1.2 (2023-03-31) + +## Major Changes + +- Support the linalg extension in the `array_api_compat.torch` namespace. + +- Add `isdtype()`. + +## Minor Changes + +- Fix the `k` keyword argument to `tril` and `triu` in `torch`. + # 1.1.1 (2023-03-10) ## Major Changes From ee02637865eddc1a116c21e21aa5ee5a891e2f27 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Fri, 31 Mar 2023 16:44:40 -0600 Subject: [PATCH 3/4] Bump version to 1.2 --- array_api_compat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array_api_compat/__init__.py b/array_api_compat/__init__.py index c92d3d89..fbe845da 100644 --- a/array_api_compat/__init__.py +++ b/array_api_compat/__init__.py @@ -17,6 +17,6 @@ this implementation for the default when working with NumPy arrays. """ -__version__ = '1.1.1' +__version__ = '1.2' from .common import * From 835c3351d218e8cdba24e8e2e910c1b7f7fe78db Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Mon, 3 Apr 2023 14:47:44 -0600 Subject: [PATCH 4/4] Update release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd739c6f..2f3b5d94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 1.2 (2023-03-31) +# 1.2 (2023-04-03) ## Major Changes