Skip to content

Commit

Permalink
update imports, remove brainstate dependency, change docstr, and fix …
Browse files Browse the repository at this point in the history
…bugs
  • Loading branch information
chaoming0625 committed Jun 12, 2024
1 parent 475b16e commit 5a90cf1
Show file tree
Hide file tree
Showing 18 changed files with 467 additions and 424 deletions.
8 changes: 4 additions & 4 deletions brainunit/math/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
# limitations under the License.
# ==============================================================================

# from ._compat_numpy import *
# from ._compat_numpy import __all__ as _compat_numpy_all
from ._others import *
from ._others import __all__ as _other_all
from ._compat_numpy_array_creation import *
from ._compat_numpy_array_creation import __all__ as _compat_array_creation_all
from ._compat_numpy_array_manipulation import *
Expand Down Expand Up @@ -45,6 +41,10 @@
from ._compat_numpy_linear_algebra import __all__ as _compat_linear_algebra_all
from ._compat_numpy_misc import *
from ._compat_numpy_misc import __all__ as _compat_misc_all
# from ._compat_numpy import *
# from ._compat_numpy import __all__ as _compat_numpy_all
from ._others import *
from ._others import __all__ as _other_all

__all__ = _compat_array_creation_all + \
_compat_array_manipulation_all + \
Expand Down
Loading

0 comments on commit 5a90cf1

Please sign in to comment.