Skip to content

Commit beac55b

Browse files
authored
Merge pull request #222 from ev-br/release_1.10_plus
Release 1.10 plus a version bump
2 parents cdd1c8d + 361bf38 commit beac55b

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

Diff for: array_api_compat/__init__.py

+1-1
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.10.0.dev0'
20+
__version__ = '1.10.1.dev0'
2121

2222
from .common import * # noqa: F401, F403

Diff for: cupy-xfails.txt

+3
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,9 @@ array_api_tests/test_special_cases.py::test_unary[trunc(x_i is -0) -> -0]
173173
array_api_tests/test_fft.py::test_fftn
174174
array_api_tests/test_fft.py::test_ifftn
175175
array_api_tests/test_fft.py::test_rfftn
176+
177+
# observed in the 1.10 release process, is likely related to xfails above
178+
array_api_tests/test_fft.py::test_irfftn
176179

177180
# 2023.12 support
178181
# cupy.ndaray cannot be specified as `repeats` argument.

Diff for: docs/changelog.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## 1.10.0 (2024-12-25)
4+
5+
### Major Changes
6+
7+
- New function `is_writeable_array` adds transparent support for readonly
8+
arrays, such as JAX arrays or numpy arrays with `.flags.writeable=False`.
9+
10+
- `asarray(..., copy=None)` with `dask` backend always copies, so that
11+
`copy=None` and `copy=True` are equivalent for the `dask` backend.
12+
This change is made to be forward compatible with the `dask==2024.12`
13+
release.
14+
15+
16+
### Minor Changes
17+
18+
- `array_namespace` accepts (and ignores) `None` and python scalars (int, float,
19+
complex, bool). This change is to simplify downstream adoption, for
20+
functions where arguments can be either arrays or scalars.
21+
22+
- `vecdot` conjugates its first argument, as stipulated by the Array API spec.
23+
Previously, conjation if the first argument was missing.
24+
25+
326
## 1.9.1 (2024-10-29)
427

528
### Major Changes

0 commit comments

Comments
 (0)