Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and mtsokol committed Mar 13, 2024
1 parent 50fbf4a commit 3b05789
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
pip install -e .[tests,finch]
- name: Run tests
run: |
pytest --pyargs sparse
pytest --pyargs sparse/tests/test_backends.py
- uses: codecov/codecov-action@v4
if: always()
- name: Publish Test Results
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "sparse"
dynamic = ["version"]
description = "Sparse n-dimensional arrays for the PyData ecosystem"
readme = "README.rst"
dependencies = ["numpy>=1.17", "numba>=0.49"]
dependencies = ["numpy>=1.17"]
maintainers = [{ name = "Hameer Abbasi", email = "hameerabbasi@yahoo.com" }]
requires-python = ">=3.9"
license = { file = "LICENSE" }
Expand Down
3 changes: 0 additions & 3 deletions sparse/tests/test_backends.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import sparse

import pytest

import numpy as np
import scipy.sparse as sp


# def test_backend_contex_manager(backend):
# if backend == sparse.BackendType.Finch:
# with pytest.raises(NotImplementedError):
Expand Down

0 comments on commit 3b05789

Please sign in to comment.