Skip to content

Commit

Permalink
Apply review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hameerabbasi committed Jun 10, 2024
1 parent 59daf9d commit 42c9bfd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: data-apis/array-api-tests
ref: 'd295a0a66cd82a43e84c1b8d73ca198cc45e9d23' # Latest commit as of 2024-05-29
ref: 'd295a0a66cd82a43e84c1b8d73ca198cc45e9d23' # Latest commit as of 2024-06-10
submodules: 'true'
path: 'array-api-tests'
- name: Set up Python
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,6 @@ sandbox.py

# Version file
sparse/_version.py

# Benchmarks
/results/
2 changes: 0 additions & 2 deletions sparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

from ._version import __version__, __version_tuple__ # noqa: F401

__array_api_version__ = "2023.12"


class BackendType(Enum):
Numba = "Numba"
Expand Down
10 changes: 4 additions & 6 deletions sparse/numba_backend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@
where,
)
from ._dok import DOK
from ._info import capabilities, default_device, default_dtypes, devices, dtypes
from ._io import load_npz, save_npz
from ._umath import elemwise
from ._utils import random
Expand All @@ -175,7 +174,11 @@ def __array_namespace_info__():
return _info


__array_api_version__ = "2023.12"


__all__ = [
"__array_api_version__",
"COO",
"DOK",
"GCXS",
Expand Down Expand Up @@ -210,7 +213,6 @@ def __array_namespace_info__():
"broadcast_arrays",
"broadcast_to",
"can_cast",
"capabilities",
"ceil",
"clip",
"complex128",
Expand All @@ -221,14 +223,10 @@ def __array_namespace_info__():
"copysign",
"cos",
"cosh",
"default_device",
"default_dtypes",
"devices",
"diagonal",
"diagonalize",
"divide",
"dot",
"dtypes",
"e",
"einsum",
"elemwise",
Expand Down

0 comments on commit 42c9bfd

Please sign in to comment.