Skip to content

Commit

Permalink
pre-commit autoupdate && pre-commit run --all-files (#69)
Browse files Browse the repository at this point in the history
* pre-commit autoupdate && pre-commit run --all-files

* Update CI

---------

Co-authored-by: J.C. Jones <[email protected]>
  • Loading branch information
cclauss and jcjones authored Feb 28, 2024
1 parent 45a0d0d commit 4a67393
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- name: Install Linting Tools
run: |
python -m pip install --upgrade pip
pip install --user pylint==2.17.7
pip install --user black~=22.3
pip install --user flake8~=4.0
pip install --user pylint==3.1.0
pip install --user black~=23.9.1
pip install --user flake8~=6.1.0
pip install --user pytest
- name: Install Partition Manager
Expand Down
15 changes: 8 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
rev: v4.4.0
hooks:
- id: check-ast
- id: detect-private-key
- id: check-merge-conflict
- id: detect-private-key
- id: end-of-file-fixer
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: "22.3.0"
rev: "23.9.1"
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
rev: "4.0.0"
- repo: https://github.com/pycqa/flake8
rev: "6.1.0"
hooks:
- id: flake8
- repo: https://github.com/PyCQA/pylint
rev: v2.17.7
rev: v3.1.0
hooks:
- id: pylint
args:
- -E
- --errors-only
additional_dependencies:
- PyMySQL
- pyyaml
- pytest
- repo: local
hooks:
- id: pytest
Expand Down

0 comments on commit 4a67393

Please sign in to comment.