Skip to content

Commit

Permalink
⬆️ marlu0.13 rubbl0.8 casacore3.5 ndarray0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Aug 20, 2024
1 parent d48b43f commit cad38e0
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 40 deletions.
74 changes: 41 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwa_hyperbeam"
version = "0.9.4"
version = "0.10.0"
authors = [
"Christopher H. Jordan <[email protected]>",
"Jack L. B. Line <[email protected]>",
Expand Down Expand Up @@ -48,8 +48,8 @@ codegen-units = 1 # Set this to 1 in Cargo.toml to allow for maximum size reduct
[dependencies]
cfg-if = "1.0.0"
hdf5 = "0.8.0"
marlu = { version = "0.11.0", default-features = false }
ndarray = "0.15.4"
marlu = { version = "0.13.0", default-features = false }
ndarray = "0.16.0"
num-complex = "0.4.1"
panic-message = "0.3.0"
parking_lot = "0.12.0"
Expand All @@ -71,10 +71,10 @@ numpy = { version = "0.19.0", optional = true }
[dev-dependencies]
approx = { version = "0.5.0", features = ["num-complex"] }
criterion = "0.5.1"
marlu = { version = "0.11.0", default-features = false, features = ["approx"] }
marlu = { version = "0.13.0", default-features = false, features = ["approx"] }
serial_test = "2.0.0"

ndarray = { version = "0.15.4", features = ["approx-0_5"] }
ndarray = { version = "0.16.0", features = ["approx"] }

[build-dependencies]
cbindgen = { version = "0.25.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/python/analytic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

//! Python interface to hyperbeam analytic beam code.

use self::ndarray::prelude::*;
use marlu::c64;
use ndarray::prelude::*;
use numpy::*;
use pyo3::prelude::*;

Expand Down
2 changes: 1 addition & 1 deletion src/python/fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use std::path::PathBuf;

use ndarray::prelude::*;
use self::ndarray::prelude::*;
use num_complex::Complex64 as c64;
use numpy::*;
use pyo3::prelude::*;
Expand Down

0 comments on commit cad38e0

Please sign in to comment.