Skip to content

Commit f9ed884

Browse files
committed
Drop deprecated wrapper for NumPy iterators.
1 parent 52d70ca commit f9ed884

File tree

5 files changed

+1
-835
lines changed

5 files changed

+1
-835
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
- Unreleased
4+
- Drop our wrapper for NumPy iterators which were deprecated in v0.16.0 as ndarray's iteration facilities are almost always preferable. ([#324](https://github.com/PyO3/rust-numpy/pull/324))
45

56
- v0.17.0
67
- Add dynamic borrow checking to safely construct references into the interior of NumPy arrays. ([#274](https://github.com/PyO3/rust-numpy/pull/274))

benches/iter.rs

Lines changed: 0 additions & 85 deletions
This file was deleted.

src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ pub mod datetime;
4343
mod dtype;
4444
mod error;
4545
pub mod npyffi;
46-
pub mod npyiter;
4746
mod slice_container;
4847
mod sum_products;
4948

@@ -64,10 +63,6 @@ pub use crate::convert::{IntoPyArray, NpyIndex, ToNpyDims, ToPyArray};
6463
pub use crate::dtype::{dtype, Complex32, Complex64, Element, PyArrayDescr};
6564
pub use crate::error::{BorrowError, FromVecError, NotContiguousError};
6665
pub use crate::npyffi::{PY_ARRAY_API, PY_UFUNC_API};
67-
#[allow(deprecated)]
68-
pub use crate::npyiter::{
69-
IterMode, NpyIterFlag, NpyMultiIter, NpyMultiIterBuilder, NpySingleIter, NpySingleIterBuilder,
70-
};
7166
pub use crate::sum_products::{dot, einsum, inner};
7267

7368
pub use ndarray::{array, Ix1, Ix2, Ix3, Ix4, Ix5, Ix6, IxDyn};

0 commit comments

Comments
 (0)