Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mojoproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ doc_pages = "mojo doc numojo/ -o docs.json"
release = "clear && magic run final && magic run doc_pages"

[dependencies]
max = "=25.1.1"
max = "=25.2"
python = ">=3.11"
numpy = ">=1.19"
scipy = ">=1.14"
12 changes: 0 additions & 12 deletions numojo/__init__.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ from numojo.core.ndarray import NDArray
from numojo.core.ndshape import NDArrayShape, Shape
from numojo.core.ndstrides import NDArrayStrides, Strides
from numojo.core.item import Item, item
from numojo.core.complex.complex_dtype import CDType
from numojo.core.complex.complex_simd import ComplexSIMD, ComplexScalar
from numojo.core.complex.complex_ndarray import ComplexNDArray
from numojo.core.matrix import Matrix
Expand All @@ -30,17 +29,6 @@ from numojo.core.datatypes import (
f16,
f32,
f64,
ci8,
ci16,
ci32,
ci64,
cu8,
cu16,
cu32,
cu64,
cf16,
cf32,
cf64,
)

# ===----------------------------------------------------------------------=== #
Expand Down
12 changes: 0 additions & 12 deletions numojo/core/__init__.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ from .ndshape import NDArrayShape
from .ndstrides import NDArrayStrides

from .complex import (
CDType,
ComplexSIMD,
ComplexScalar,
ComplexNDArray,
Expand All @@ -25,17 +24,6 @@ from .datatypes import (
f16,
f32,
f64,
ci8,
ci16,
ci32,
ci64,
cu8,
cu16,
cu32,
cu64,
cf16,
cf32,
cf64,
)

# from .utility import
Expand Down
1 change: 0 additions & 1 deletion numojo/core/complex/__init__.mojo
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
from .complex_dtype import CDType
from .complex_simd import ComplexSIMD, ComplexScalar
from .complex_ndarray import ComplexNDArray
Loading