Skip to content

Commit

Permalink
Removed unused import
Browse files Browse the repository at this point in the history
Signed-off-by: Maki4748 <[email protected]>
  • Loading branch information
Maki4748 committed Nov 30, 2024
1 parent eb59a3b commit 9c9533a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion eigency/conversions.pxd
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
cimport numpy as np


# If this is changed, array_type_t in core.pxd needs to be changed too
# Also, the handling of the types needs to be changed in eigency_cpp.h for NDAC and NDAV
ctypedef fused array_type_t:
Expand Down
1 change: 0 additions & 1 deletion eigency/core.pxd
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
cimport numpy as np


# If this is changed, array_type_t in conversions.pxd needs to be changed too
ctypedef fused dtype:
signed char
Expand Down
5 changes: 4 additions & 1 deletion tests/eigency_tests/eigency_tests.pyx
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# distutils: language = c++
# distutils: sources = eigency_tests/eigency_tests_cpp.cpp
import numpy as np

from libc.stdint cimport (int8_t, int16_t, int64_t, uint8_t, uint16_t,
uint32_t, uint64_t)

from eigency.core cimport *
from libc.stdint cimport int8_t, uint8_t, int16_t, uint16_t, uint32_t, int64_t, uint64_t

# cimport eigency.conversions
# from eigency_tests.eigency cimport *
Expand Down
2 changes: 0 additions & 2 deletions tests/run_tests.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import unittest

import cython

import eigency_tests
import numpy as np
from numpy.testing import assert_array_equal
Expand Down

0 comments on commit 9c9533a

Please sign in to comment.