Skip to content

Commit

Permalink
add back missing dtypes
Browse files Browse the repository at this point in the history
  • Loading branch information
lithomas1 committed Oct 7, 2024
1 parent 11a92fe commit 2c4502f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/array-api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- name: Checkout array-api-compat
Expand Down
6 changes: 5 additions & 1 deletion array_api_compat/dask/array/_aliases.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
# Dtypes
iinfo,
finfo,
float64,
int8,
float32,
can_cast,
result_type,
)
Expand Down Expand Up @@ -195,6 +198,7 @@ def _isscalar(a):
__all__ = _common_aliases + ['__array_namespace_info__', 'asarray', 'acos',
'acosh', 'asin', 'asinh', 'atan', 'atan2',
'atanh', 'bitwise_left_shift', 'bitwise_invert',
'bitwise_right_shift', 'concat', 'pow', 'iinfo', 'finfo', 'can_cast', 'result_type']
'bitwise_right_shift', 'concat', 'pow', 'iinfo', 'finfo', 'can_cast', 'result_type',
'float64', 'int8', 'float32']

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

0 comments on commit 2c4502f

Please sign in to comment.