@@ -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 "
710710pre-commit = "3.5.0"
711711pytest = "7.4.2"
712712pytest-cov = "4.1.0"
713- ruff = "0.1.5 "
713+ ruff = "0.1.6 "
714714tomli = {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 "
721721pre-commit = ">=3.5.0"
722722pytest = ">=7.4.2"
723723pytest-cov = ">=4.1.0"
724- ruff = ">=0.1.5 "
724+ ruff = ">=0.1.6 "
725725tomli = {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
731731pre-commit==3.5.0
732732pytest==7.4.2
733733pytest-cov==4.1.0
734- ruff==0.1.5
734+ ruff==0.1.6
735735maturin==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
743743pre-commit>=3.5.0
744744pytest>=7.4.2
745745pytest-cov>=4.1.0
746- ruff>=0.1.5
746+ ruff>=0.1.6
747747maturin>=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