Skip to content

Commit

Permalink
More pre-commit changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dmurphy18 committed Aug 8, 2024
1 parent 69d6825 commit 5caa2c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,26 +118,26 @@ repos:
- flake8-typing-imports

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.0
rev: v1.4.1
hooks:
- id: mypy
name: Run mypy against source
files: ^src/.*\.py$
exclude: ^src/pytestskipmarkers/(downgraded/.*|utils/(socket|time)\.py)$
args: [--strict, --python-version 3.8, --no-site-packages]
args: [--strict, --no-site-packages, --python-version 3.8]
additional_dependencies:
- attrs
- types-attrs
- types-setuptools

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.0
rev: v1.4.1
hooks:
- id: mypy
name: Run mypy against tests
files: ^tests/.*\.py$
exclude: ^src/pytestskipmarkers/(downgraded/.*|utils/(socket|time)\.py)$
args: [--python-version 3.8, --no-site-packages]
args: [--no-site-packages, --python-version 3.8]
additional_dependencies:
- pytest
- attrs
Expand Down

0 comments on commit 5caa2c0

Please sign in to comment.