Skip to content

Commit 67145fc

Browse files
committed
fix: correct msrvcheck and include python project
1 parent a5fabdf commit 67145fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/msrvcheck/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fn main() -> CargoResult<()> {
5656

5757
for (package, version) in packages_with_rust_version {
5858
if let Some(v) = version {
59-
if !v.is_compatible_with(project_msrv.as_partial()) {
59+
if !project_msrv.is_compatible_with(v.as_partial()) {
6060
panic!(
6161
"package '{package}' has MSRV {v} not compatible with current project MSRV {project_msrv}",
6262
);

0 commit comments

Comments
 (0)