Skip to content

Commit 711ae3f

Browse files
authored
Merge pull request #140 from sanders41/dependencies
Bump dependencies
2 parents 6ca7bbf + 6829a03 commit 711ae3f

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/project_generator.rs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,12 @@ fn build_latest_pre_commit_dependencies(
210210
PreCommitHookVersion {
211211
id: PreCommitHook::MyPy,
212212
repo: "https://github.com/pre-commit/mirrors-mypy".to_string(),
213-
rev: "v1.6.1".to_string(),
213+
rev: "v1.7.0".to_string(),
214214
},
215215
PreCommitHookVersion {
216216
id: PreCommitHook::Ruff,
217217
repo: "https://github.com/astral-sh/ruff-pre-commit".to_string(),
218-
rev: "v0.1.5".to_string(),
218+
rev: "v0.1.6".to_string(),
219219
},
220220
];
221221

@@ -284,7 +284,7 @@ fn build_latest_dev_dependencies(
284284
let mut packages = vec![
285285
PythonPackageVersion {
286286
name: "mypy".to_string(),
287-
version: "1.6.1".to_string(),
287+
version: "1.7.0".to_string(),
288288
},
289289
PythonPackageVersion {
290290
name: "pre-commit".to_string(),
@@ -300,7 +300,7 @@ fn build_latest_dev_dependencies(
300300
},
301301
PythonPackageVersion {
302302
name: "ruff".to_string(),
303-
version: "0.1.5".to_string(),
303+
version: "0.1.6".to_string(),
304304
},
305305
];
306306

@@ -681,7 +681,7 @@ mod tests {
681681
creator_email: "[email protected]".to_string(),
682682
license: LicenseType::Mit,
683683
copyright_year: Some("2023".to_string()),
684-
version: "0.1.5".to_string(),
684+
version: "0.1.6".to_string(),
685685
python_version: "3.11".to_string(),
686686
min_python_version: "3.8".to_string(),
687687
project_manager: ProjectManager::Poetry,
@@ -706,44 +706,44 @@ mod tests {
706706

707707
fn pinned_poetry_dependencies() -> String {
708708
r#"[tool.poetry.group.dev.dependencies]
709-
mypy = "1.6.1"
709+
mypy = "1.7.0"
710710
pre-commit = "3.5.0"
711711
pytest = "7.4.2"
712712
pytest-cov = "4.1.0"
713-
ruff = "0.1.5"
713+
ruff = "0.1.6"
714714
tomli = {version = "2.0.1", python = "<3.11"}"#
715715
.to_string()
716716
}
717717

718718
fn min_poetry_dependencies() -> String {
719719
r#"[tool.poetry.group.dev.dependencies]
720-
mypy = ">=1.6.1"
720+
mypy = ">=1.7.0"
721721
pre-commit = ">=3.5.0"
722722
pytest = ">=7.4.2"
723723
pytest-cov = ">=4.1.0"
724-
ruff = ">=0.1.5"
724+
ruff = ">=0.1.6"
725725
tomli = {version = ">=2.0.1", python = "<3.11"}"#
726726
.to_string()
727727
}
728728

729729
fn pinned_requirments_file() -> String {
730-
r#"mypy==1.6.1
730+
r#"mypy==1.7.0
731731
pre-commit==3.5.0
732732
pytest==7.4.2
733733
pytest-cov==4.1.0
734-
ruff==0.1.5
734+
ruff==0.1.6
735735
maturin==1.3.2
736736
-e .
737737
"#
738738
.to_string()
739739
}
740740

741741
fn min_requirments_file() -> String {
742-
r#"mypy>=1.6.1
742+
r#"mypy>=1.7.0
743743
pre-commit>=3.5.0
744744
pytest>=7.4.2
745745
pytest-cov>=4.1.0
746-
ruff>=0.1.5
746+
ruff>=0.1.6
747747
maturin>=1.3.2
748748
-e .
749749
"#
@@ -1080,11 +1080,11 @@ dmypy.json
10801080
- id: end-of-file-fixer
10811081
- id: trailing-whitespace
10821082
- repo: https://github.com/pre-commit/mirrors-mypy
1083-
rev: v1.6.1
1083+
rev: v1.7.0
10841084
hooks:
10851085
- id: mypy
10861086
- repo: https://github.com/astral-sh/ruff-pre-commit
1087-
rev: v0.1.5
1087+
rev: v0.1.6
10881088
hooks:
10891089
- id: ruff
10901090
args: [--fix, --exit-non-zero-on-fix]

0 commit comments

Comments
 (0)