Skip to content

Commit

Permalink
Merge pull request #71 from ReadAlongs/dev.ej/bump-mypy-black
Browse files Browse the repository at this point in the history
chore: bump black and mypy to most recent with py 3.8 support
  • Loading branch information
dhdaines authored Dec 13, 2024
2 parents 96a86b1 + db6ec74 commit e6accb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ repos:
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 24.3.0
rev: 24.8.0
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
rev: v1.13.0
hooks:
- id: mypy
- repo: https://github.com/PyCQA/isort
Expand Down
1 change: 0 additions & 1 deletion py/soundswallower/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ def make_argparse() -> argparse.ArgumentParser:
grammars.add_argument("-t", "--align-text", help="Input text for force alignment.")
grammars.add_argument("-g", "--grammar", help="Grammar file for recognition.")
grammars.add_argument("-f", "--fsg", help="FSG file for recognition.")
parser.add_argument_group(grammars)
return parser


Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ dev = [
"pytest",
"numpy",
"pre-commit",
"black==24.3.0",
"black==24.8.0",
"isort",
"mypy==0.991",
"mypy==1.13.0",
]

[project.urls]
Expand Down

0 comments on commit e6accb2

Please sign in to comment.