Skip to content

Commit

Permalink
build: updated deps (#274)
Browse files Browse the repository at this point in the history
* build: updated deps
* removed py38. fixed python version dep
  • Loading branch information
ryankanno authored Jun 4, 2023
1 parent f4d984e commit 77508bf
Show file tree
Hide file tree
Showing 5 changed files with 334 additions and 287 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.8.16"
- "3.11"
os: [ubuntu-latest]
env:
- TOXENV: "pre-commit"
Expand Down Expand Up @@ -48,7 +48,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.8.16"
- "3.9"
- "3.10"
- "3.11"
Expand Down
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.0.0
rev: v1.3.0
hooks:
- id: mypy
exclude: |
Expand All @@ -21,11 +21,11 @@ repos:
flake8-debugger, flake8-docstrings, flake8-polyfill,
flake8-pytest, yesqa]
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
rev: v3.4.0
hooks:
- id: pyupgrade
- repo: https://github.com/python/black
rev: 23.1.0
rev: 23.3.0
hooks:
- id: black
args: ['--config', 'pyproject.toml']
Expand All @@ -35,7 +35,7 @@ repos:
rev: 1.13.0
hooks:
- id: blacken-docs
additional_dependencies: [black==23.1.0]
additional_dependencies: [black==23.3.0]
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
Expand All @@ -53,7 +53,7 @@ repos:
hooks:
- id: bashate
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
rev: v9.4.0
rev: v9.5.0
hooks:
- id: commitlint
stages: [commit-msg]
Expand All @@ -64,15 +64,15 @@ repos:
- id: detect-secrets
args: ['--baseline', '.secrets.baseline']
- repo: https://github.com/crate-ci/typos
rev: typos-dict-v0.9.16
rev: v1.14.12
hooks:
- id: typos
- repo: https://github.com/jendrikseipp/vulture
rev: v2.7
hooks:
- id: vulture
- repo: https://github.com/pycqa/bandit
rev: 1.7.4
rev: 1.7.5
hooks:
- id: bandit
args: ["--configfile", "bandit.yaml", "--ini", ".bandit", "-r"]
Expand Down
Loading

0 comments on commit 77508bf

Please sign in to comment.