Skip to content

Commit

Permalink
Merge pull request #227 from sanders41/pre-commit
Browse files Browse the repository at this point in the history
Bump default pre-commit version 3.6.1 -> 3.6.2
  • Loading branch information
sanders41 authored Feb 20, 2024
2 parents 9893edd + e0e4a41 commit 01dded8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/package_version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,10 @@ pub fn default_version(package: &PythonPackage, min_python_version: &str) -> Str
if minor < 10 {
"3.5.0".to_string()
} else {
"3.6.1".to_string()
"3.6.2".to_string()
}
} else {
"3.6.1".to_string()
"3.6.2".to_string()
}
}
PythonPackage::Pytest => "8.0.0".to_string(),
Expand Down Expand Up @@ -204,6 +204,6 @@ mod tests {
fn test_three_ten() {
let version = default_version(&PythonPackage::PreCommit, "3.10");

assert_eq!("3.6.1", version)
assert_eq!("3.6.2", version)
}
}

0 comments on commit 01dded8

Please sign in to comment.