Skip to content

Commit 1718187

Browse files
committed
Merge remote-tracking branch 'origin/main' into tomli
2 parents ed8f4c8 + 84bf4f7 commit 1718187

File tree

3 files changed

+33
-31
lines changed

3 files changed

+33
-31
lines changed

Cargo.lock

Lines changed: 28 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python-project-generator"
3-
version = "2.2.6"
3+
version = "2.2.7"
44
edition = "2021"
55
authors = ["Paul Sanders <[email protected]>"]
66
description = "Generates a Python project structure."

src/package_version.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,14 @@ pub fn default_version(package: &PythonPackage) -> String {
168168
match package {
169169
PythonPackage::Maturin => "1.9.3".to_string(),
170170
PythonPackage::Mkdocs => "1.6.1".to_string(),
171-
PythonPackage::MkdocsMaterial => "9.6.17".to_string(),
171+
PythonPackage::MkdocsMaterial => "9.6.18".to_string(),
172172
PythonPackage::Mkdocstrings => "0.30.0".to_string(),
173173
PythonPackage::MyPy => "1.17.1".to_string(),
174174
PythonPackage::PreCommit => "4.3.0".to_string(),
175175
PythonPackage::Pytest => "8.4.1".to_string(),
176-
PythonPackage::PytestAsyncio => "1.0.0".to_string(),
176+
PythonPackage::PytestAsyncio => "1.1.0".to_string(),
177177
PythonPackage::PytestCov => "6.2.1".to_string(),
178-
PythonPackage::Ruff => "0.12.9".to_string(),
178+
PythonPackage::Ruff => "0.12.10".to_string(),
179179
PythonPackage::Tomli => "2.2.1".to_string(),
180180
}
181181
}
@@ -184,7 +184,7 @@ pub fn default_pre_commit_rev(hook: &PreCommitHook) -> String {
184184
match hook {
185185
PreCommitHook::MyPy => "v1.17.1".to_string(),
186186
PreCommitHook::PreCommit => "v6.0.0".to_string(),
187-
PreCommitHook::Ruff => "v0.12.9".to_string(),
187+
PreCommitHook::Ruff => "v0.12.10".to_string(),
188188
}
189189
}
190190

0 commit comments

Comments
 (0)