Skip to content

Commit d169c52

Browse files
committed
Merge remote-tracking branch 'origin/main' into bump-version
2 parents eb217ae + 0886214 commit d169c52

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ path = "src/main.rs"
1818

1919
[dependencies]
2020
anyhow = "1.0.97"
21-
clap = { version = "4.5.34", features = ["color", "suggestions", "derive"] }
21+
clap = { version = "4.5.35", features = ["color", "suggestions", "derive"] }
2222
colored = "3.0.0"
2323
dirs = "6.0.0"
2424
exponential-backoff = "2.0.0"
2525
indicatif = "0.17.11"
26-
minijinja = "2.8.0"
26+
minijinja = "2.9.0"
2727
rayon = "1.10.0"
2828
reqwest = { version = "0.12.15", features = ["json", "blocking"] }
2929
serde = { version = "1.0.219", features = ["derive"] }

src/main.rs

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ fn main() {
103103
exit(1);
104104
}
105105
}
106-
Param::ResetCreator {} => {
106+
Param::ResetCreator => {
107107
if let Err(e) = Config::default().reset_creator() {
108108
print_error(e);
109109
exit(1);
@@ -115,7 +115,7 @@ fn main() {
115115
exit(1);
116116
}
117117
}
118-
Param::ResetCreatorEmail {} => {
118+
Param::ResetCreatorEmail => {
119119
if let Err(e) = Config::default().reset_creator_email() {
120120
print_error(e);
121121
exit(1);
@@ -127,7 +127,7 @@ fn main() {
127127
exit(1);
128128
}
129129
}
130-
Param::ResetLicense {} => {
130+
Param::ResetLicense => {
131131
if let Err(e) = Config::default().reset_license() {
132132
print_error(e);
133133
exit(1);
@@ -139,7 +139,7 @@ fn main() {
139139
exit(1);
140140
}
141141
}
142-
Param::ResetPythonVersion {} => {
142+
Param::ResetPythonVersion => {
143143
if let Err(e) = Config::default().reset_python_version() {
144144
print_error(e);
145145
exit(1);
@@ -151,7 +151,7 @@ fn main() {
151151
exit(1);
152152
}
153153
}
154-
Param::ResetMinPythonVersion {} => {
154+
Param::ResetMinPythonVersion => {
155155
if let Err(e) = Config::default().reset_min_python_version() {
156156
print_error(e);
157157
exit(1);
@@ -163,7 +163,7 @@ fn main() {
163163
exit(1);
164164
}
165165
}
166-
Param::ResetProjectManager {} => {
166+
Param::ResetProjectManager => {
167167
if let Err(e) = Config::default().reset_project_manager() {
168168
print_error(e);
169169
exit(1);
@@ -175,7 +175,7 @@ fn main() {
175175
exit(1);
176176
}
177177
}
178-
Param::ResetPyo3PythonManager {} => {
178+
Param::ResetPyo3PythonManager => {
179179
if let Err(e) = Config::default().reset_pyo3_python_manager() {
180180
print_error(e);
181181
exit(1);
@@ -195,7 +195,7 @@ fn main() {
195195
}
196196
}
197197
},
198-
Param::ResetApplicationOrLibrary {} => {
198+
Param::ResetApplicationOrLibrary => {
199199
if let Err(e) = Config::default().reset_is_application() {
200200
print_error(e);
201201
exit(1);
@@ -215,7 +215,7 @@ fn main() {
215215
}
216216
}
217217
},
218-
Param::ResetIsAsyncProject {} => {
218+
Param::ResetIsAsyncProject => {
219219
if let Err(e) = Config::default().reset_is_async_project() {
220220
print_error(e);
221221
exit(1);
@@ -227,7 +227,7 @@ fn main() {
227227
exit(1);
228228
}
229229
}
230-
Param::ResetGithubActionPythonTestVersions {} => {
230+
Param::ResetGithubActionPythonTestVersions => {
231231
if let Err(e) = Config::default().reset_github_actions_python_test_versions() {
232232
print_error(e);
233233
exit(1);
@@ -239,7 +239,7 @@ fn main() {
239239
exit(1);
240240
}
241241
}
242-
Param::ResetMaxLineLength {} => {
242+
Param::ResetMaxLineLength => {
243243
if let Err(e) = Config::default().reset_max_line_length() {
244244
print_error(e);
245245
exit(1);
@@ -259,7 +259,7 @@ fn main() {
259259
}
260260
}
261261
},
262-
Param::ResetUseDependabot {} => {
262+
Param::ResetUseDependabot => {
263263
if let Err(e) = Config::default().reset_use_dependabot() {
264264
print_error(e);
265265
exit(1);
@@ -271,7 +271,7 @@ fn main() {
271271
exit(1);
272272
}
273273
}
274-
Param::ResetDependabotSchedule {} => {
274+
Param::ResetDependabotSchedule => {
275275
if let Err(e) = Config::default().reset_dependabot_schedule() {
276276
print_error(e);
277277
exit(1);
@@ -283,7 +283,7 @@ fn main() {
283283
exit(1);
284284
}
285285
}
286-
Param::ResetDependabotDay {} => {
286+
Param::ResetDependabotDay => {
287287
if let Err(e) = Config::default().reset_dependabot_day() {
288288
print_error(e);
289289
exit(1);
@@ -303,7 +303,7 @@ fn main() {
303303
}
304304
}
305305
},
306-
Param::ResetUseContinuousDeployment {} => {
306+
Param::ResetUseContinuousDeployment => {
307307
if let Err(e) = Config::default().reset_use_continuous_deployment() {
308308
print_error(e);
309309
exit(1);
@@ -323,7 +323,7 @@ fn main() {
323323
}
324324
}
325325
},
326-
Param::ResetUseReleaseDrafter {} => {
326+
Param::ResetUseReleaseDrafter => {
327327
if let Err(e) = Config::default().reset_use_release_drafter() {
328328
print_error(e);
329329
exit(1);
@@ -343,7 +343,7 @@ fn main() {
343343
}
344344
}
345345
},
346-
Param::ResetUseMultiOsCi {} => {
346+
Param::ResetUseMultiOsCi => {
347347
if let Err(e) = Config::default().reset_use_multi_os_ci() {
348348
print_error(e);
349349
exit(1);
@@ -363,7 +363,7 @@ fn main() {
363363
}
364364
}
365365
},
366-
Param::ResetIncludeDocs {} => {
366+
Param::ResetIncludeDocs => {
367367
if let Err(e) = Config::default().reset_include_docs() {
368368
print_error(e);
369369
exit(1);
@@ -383,7 +383,7 @@ fn main() {
383383
}
384384
}
385385
},
386-
Param::ResetDownloadLatestPackages {} => {
386+
Param::ResetDownloadLatestPackages => {
387387
if let Err(e) = Config::default().reset_download_latest_packages() {
388388
print_error(e);
389389
exit(1);

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.8.1".to_string(),
170170
PythonPackage::Mkdocs => "1.6.1".to_string(),
171-
PythonPackage::MkdocsMaterial => "9.6.10".to_string(),
171+
PythonPackage::MkdocsMaterial => "9.6.11".to_string(),
172172
PythonPackage::Mkdocstrings => "0.29.1".to_string(),
173173
PythonPackage::MyPy => "1.15.0".to_string(),
174174
PythonPackage::PreCommit => "4.2.0".to_string(),
175175
PythonPackage::Pytest => "8.3.5".to_string(),
176176
PythonPackage::PytestAsyncio => "0.26.0".to_string(),
177-
PythonPackage::PytestCov => "6.0.0".to_string(),
178-
PythonPackage::Ruff => "0.11.2".to_string(),
177+
PythonPackage::PytestCov => "6.1.0".to_string(),
178+
PythonPackage::Ruff => "0.11.3".to_string(),
179179
PythonPackage::Tomli => "2.0.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.15.0".to_string(),
186186
PreCommitHook::PreCommit => "v5.0.0".to_string(),
187-
PreCommitHook::Ruff => "v0.11.2".to_string(),
187+
PreCommitHook::Ruff => "v0.11.3".to_string(),
188188
}
189189
}
190190

src/rust_files.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fn build_latest_dependencies(download_latest_packages: bool) -> String {
1111
let mut version_string = String::new();
1212
let mut packages = vec![RustPackageVersion {
1313
name: "pyo3".to_string(),
14-
version: "0.24.0".to_string(),
14+
version: "0.24.1".to_string(),
1515
features: Some(vec!["extension-module".to_string()]),
1616
}];
1717

0 commit comments

Comments
 (0)