Skip to content

Commit

Permalink
feat: add legacy support for MD4 in Python patch versions greater tha…
Browse files Browse the repository at this point in the history
…n 4. Used in NTLM auth
  • Loading branch information
mortendaehli committed Mar 18, 2024
1 parent ec16d46 commit f9ac0c1
Show file tree
Hide file tree
Showing 5 changed files with 1,210 additions and 1,705 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
rev: v4.5.0
hooks:
- id: check-yaml
- id: check-json
- id: trailing-whitespace
- id: check-merge-conflict
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 24.2.0
hooks:
- id: black
language_version: python3

- repo: https://github.com/PyCQA/flake8
rev: '6.0.0'
rev: '7.0.0'
hooks:
- id: flake8
args: ['--ignore=E501,W503,E231,E503,E203,F401,E702']
args: ['--ignore=E501,W503,E231,E503,E203,F401,E702,E704']

- repo: https://github.com/timothycrosley/isort
rev: '5.12.0'
rev: '5.13.2'
hooks:
- id: isort
args:
Expand All @@ -31,7 +31,7 @@ repos:
]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.5.1
rev: v1.9.0
hooks:
- id: mypy
args: [--strict, --ignore-missing-imports]
Expand Down
Loading

0 comments on commit f9ac0c1

Please sign in to comment.