@@ -151,7 +151,7 @@ impl LatestVersion for RustPackageVersion {
151151pub fn default_version ( package : & PythonPackage , min_python_version : & str ) -> String {
152152 match package {
153153 PythonPackage :: Maturin => "1.4.0" . to_string ( ) ,
154- PythonPackage :: MyPy => "1.7.1 " . to_string ( ) ,
154+ PythonPackage :: MyPy => "1.8.0 " . to_string ( ) ,
155155
156156 // TODO: This isn't a good resolver but it will work for now. Should be imporoved.
157157 PythonPackage :: PreCommit => {
@@ -168,16 +168,16 @@ pub fn default_version(package: &PythonPackage, min_python_version: &str) -> Str
168168 }
169169 PythonPackage :: Pytest => "7.4.3" . to_string ( ) ,
170170 PythonPackage :: PytestCov => "4.1.0" . to_string ( ) ,
171- PythonPackage :: Ruff => "0.1.8 " . to_string ( ) ,
171+ PythonPackage :: Ruff => "0.1.9 " . to_string ( ) ,
172172 PythonPackage :: Tomli => "2.0.1" . to_string ( ) ,
173173 }
174174}
175175
176176pub fn default_pre_commit_rev ( hook : & PreCommitHook ) -> String {
177177 match hook {
178- PreCommitHook :: MyPy => "v1.7.1 " . to_string ( ) ,
178+ PreCommitHook :: MyPy => "v1.8.0 " . to_string ( ) ,
179179 PreCommitHook :: PreCommit => "v4.5.0" . to_string ( ) ,
180- PreCommitHook :: Ruff => "v0.1.8 " . to_string ( ) ,
180+ PreCommitHook :: Ruff => "v0.1.9 " . to_string ( ) ,
181181 }
182182}
183183
0 commit comments