Skip to content

Commit

Permalink
Fix pre-commit black issue involving click requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonwillard committed Apr 1, 2022
1 parent b8335d8 commit 47846b5
Showing 1 changed file with 8 additions and 28 deletions.
36 changes: 8 additions & 28 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,47 +1,27 @@
exclude: |
(?x)^(
versioneer\.py|
ampersand/_version\.py|
doc/.*|
bin/.*
)$
repos:
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
language_version: python3
exclude: |
(?x)^(
versioneer\.py|
ampersand/_version\.py|
doc/.*|
bin/.*
)$
additional_dependencies: ['click==8.0.4']
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
hooks:
- id: flake8
exclude: |
(?x)^(
versioneer\.py|
ampersand/_version\.py|
doc/.*|
bin/.*
)$
- repo: https://github.com/pycqa/isort
rev: 5.5.2
hooks:
- id: isort
exclude: |
(?x)^(
versioneer\.py|
ampersand/_version\.py|
doc/.*|
bin/.*
)$
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.790
hooks:
- id: mypy
args: [--ignore-missing-imports]
exclude: |
(?x)^(
versioneer\.py|
pymc3_hmm/_version\.py|
doc/.*|
bin/.*
)$

0 comments on commit 47846b5

Please sign in to comment.