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
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v6.0.0
hooks:
- id: check-case-conflict
- id: check-merge-conflict
Expand All @@ -12,15 +12,15 @@ repos:
- id: check-yaml
- id: requirements-txt-fixer
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.4
rev: v4.0.0-alpha.8
hooks:
- id: prettier
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.5.0
rev: v2.8.0
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
rev: v3.20.0
hooks:
- id: pyupgrade
args: [--py37-plus]
Expand All @@ -34,21 +34,21 @@ repos:
## - isort
## === ##
- repo: https://github.com/PyCQA/isort
rev: 5.13.0
rev: 6.0.1
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 23.11.0
rev: 25.1.0
hooks:
- id: black # black-jupyter
## >>> black and isort ##
- repo: https://github.com/PyCQA/bandit
rev: 1.7.6
rev: 1.8.6
hooks:
- id: bandit
args: [--recursive, --quiet]
- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.3.0
hooks:
- id: flake8 # E***, W***, F***
additional_dependencies:
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ classifiers =
Environment :: Web Environment
Framework :: Sphinx :: Extension
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Expand All @@ -31,7 +29,7 @@ packages = find_namespace:
install_requires =
Sphinx>=1.8
gitpython>=3.1.8
python_requires = >=3.8
python_requires = >=3.9
include_package_data = True
package_dir =
= src
Expand Down