Skip to content

Commit 12f8f70

Browse files
author
Jean Commère
committed
Allow clippy result_large_err & update CI MSRV
1 parent 4fec862 commit 12f8f70

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/checking.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
toolchain:
13-
- 1.54.0
13+
- 1.64.0
1414
- stable
1515
- nightly
1616
os:

.github/workflows/codequality.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
toolchain:
13-
- 1.54.0
13+
- 1.64.0
1414
- stable
1515

1616
steps:

.github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
toolchain:
14-
- 1.54.0
14+
- 1.64.0
1515
- stable
1616
os:
1717
- ubuntu-18.04

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
//! linker errors if no BLAS backend is specified.
1111
1212
#![allow(clippy::many_single_char_names)]
13+
#![allow(clippy::result_large_err)]
1314

1415
pub mod bidiagonal;
1516
pub mod cholesky;

0 commit comments

Comments
 (0)