Skip to content

Commit 9ef7f72

Browse files
authored
Merge pull request #37 from asmeurer/release
1.2 release
2 parents 5d3a92c + 835c335 commit 9ef7f72

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.github/workflows/array-api-tests-torch.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ jobs:
77
uses: ./.github/workflows/array-api-tests.yml
88
with:
99
package-name: torch
10+
# Proper linalg testing will require
11+
# https://github.com/data-apis/array-api-tests/pull/101
1012
pytest-extra-args: "--disable-extension linalg"

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 1.2 (2023-04-03)
2+
3+
## Major Changes
4+
5+
- Support the linalg extension in the `array_api_compat.torch` namespace.
6+
7+
- Add `isdtype()`.
8+
9+
## Minor Changes
10+
11+
- Fix the `k` keyword argument to `tril` and `triu` in `torch`.
12+
113
# 1.1.1 (2023-03-10)
214

315
## Major Changes

array_api_compat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
this implementation for the default when working with NumPy arrays.
1818
1919
"""
20-
__version__ = '1.1.1'
20+
__version__ = '1.2'
2121

2222
from .common import *

0 commit comments

Comments
 (0)