Skip to content

Commit 1ffc2ec

Browse files
authoredAug 12, 2024··
Merge pull request #156 from magnusuMET/feature/ndarray_0.16
Bump ndarray
2 parents 2610246 + 2000912 commit 1ffc2ec

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎.github/workflows/codecov.yml

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
- name: Checkout repository
1717
uses: actions/checkout@v4
1818

19+
- name: Update apt
20+
run: sudo apt-get update
21+
1922
- name: Install netcdf
2023
run: sudo apt-get install libnetcdf-dev
2124

‎netcdf-examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ mpi = ["dep:mpi", "netcdf/mpi", "dep:mpi-sys"]
1111
netcdf = { workspace = true }
1212
mpi = { version = "0.7.0", optional = true }
1313
mpi-sys = { workspace = true, optional = true }
14-
ndarray = "0.15.6"
14+
ndarray = ">=0.15,<=0.16"

‎netcdf/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ mpi = ["dep:mpi-sys", "netcdf-sys/mpi"]
2424
ndarray = ["dep:ndarray"]
2525

2626
[dependencies]
27-
ndarray = { version = "0.15", optional = true }
27+
ndarray = { version = ">=0.15,<=0.16", optional = true }
2828
netcdf-sys = { workspace = true }
2929
netcdf-derive = { workspace = true, optional = true }
3030
bitflags = "2.4.2"

‎netcdf/src/par.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
use crate::{
2-
error::{checked, Result},
3-
utils::checked_with_lock,
4-
};
1+
use crate::{error::Result, utils::checked_with_lock};
52

63
use netcdf_sys::nc_type;
74

0 commit comments

Comments
 (0)
Please sign in to comment.