Skip to content

Commit 2c4502f

Browse files
committed
add back missing dtypes
1 parent 11a92fe commit 2c4502f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
strategy:
4242
matrix:
43-
python-version: ['3.10', '3.11', '3.12']
43+
python-version: ['3.9', '3.10', '3.11', '3.12']
4444

4545
steps:
4646
- name: Checkout array-api-compat

array_api_compat/dask/array/_aliases.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
# Dtypes
1313
iinfo,
1414
finfo,
15+
float64,
16+
int8,
17+
float32,
1518
can_cast,
1619
result_type,
1720
)
@@ -195,6 +198,7 @@ def _isscalar(a):
195198
__all__ = _common_aliases + ['__array_namespace_info__', 'asarray', 'acos',
196199
'acosh', 'asin', 'asinh', 'atan', 'atan2',
197200
'atanh', 'bitwise_left_shift', 'bitwise_invert',
198-
'bitwise_right_shift', 'concat', 'pow', 'iinfo', 'finfo', 'can_cast', 'result_type']
201+
'bitwise_right_shift', 'concat', 'pow', 'iinfo', 'finfo', 'can_cast', 'result_type',
202+
'float64', 'int8', 'float32']
199203

200204
_all_ignore = ["get_xp", "da", "np"]

0 commit comments

Comments
 (0)