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" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3af5c592..2f3b5d94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# 1.2 (2023-04-03) + +## 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 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 *