Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
repos:

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.4.0
hooks:
- name: remove trailing whitespace
id: trailing-whitespace
Expand All @@ -12,26 +12,26 @@ repos:
id: requirements-txt-fixer

- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- name: sort python imports
id: isort

- repo: https://github.com/psf/black
rev: 22.6.0
rev: 23.3.0
hooks:
- name: re-format with black
id: black
language_version: python3

- repo: https://github.com/pycqa/flake8
rev: 5.0.4
rev: 6.0.0
hooks:
- name: check syntax with flake8
id: flake8

- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.0.0
rev: v2.2.0
hooks:
- name: format setup.cfg
id: setup-cfg-fmt
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Build Tools
keywords =
make
Expand All @@ -30,7 +31,7 @@ project_urls =

[options]
install_requires =
click >= 8
click>=8
setuptools
wheel
python_requires = >=3.10
Expand Down