Skip to content

Commit 440f842

Browse files
authored
Merge pull request #171 from sanders41/dependencies
Bump default dependencies
2 parents 13cbba1 + ef19ad5 commit 440f842

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/package_version.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ impl LatestVersion for RustPackageVersion {
151151
pub 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

176176
pub 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

Comments
 (0)