Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #13

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
18 changes: 9 additions & 9 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.1.0
rev: v5.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: v2.5.1
rev: v4.0.0-alpha.8
hooks:
- id: prettier
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v1.20.0
rev: v2.7.0
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.0
rev: v3.19.1
hooks:
- id: pyupgrade
args: [--py38-plus]
Expand All @@ -34,21 +34,21 @@ repos:
## - isort
## === ##
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 22.1.0
rev: 24.10.0
hooks:
- id: black # black-jupyter
## >>> black and isort ##
- repo: https://github.com/PyCQA/bandit
rev: 1.7.2
rev: 1.8.0
hooks:
- id: bandit
args: [--recursive, --quiet]
- repo: https://gitlab.com/PyCQA/flake8
rev: 3.9.2
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
hooks:
- id: flake8 # E***, W***, F***
additional_dependencies:
Expand Down
6 changes: 1 addition & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ url = https://github.com/lcnittl/DMFO
author = Christian Knittl-Frank
author_email = [email protected]
license = GPL-3.0
license_file = LICENSE
license_files = LICENSE
classifiers =
Development Status :: 3 - Alpha
Expand All @@ -18,9 +17,6 @@ classifiers =
Operating System :: Microsoft :: Windows :: Windows 10
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Utilities
download_url = http://pypi.python.org/pypi/DMFO
project_urls =
Expand All @@ -32,7 +28,7 @@ packages = find:
install_requires =
colorlog>=4.1.0
pywin32>=228
python_requires = >=3.8
python_requires = >=3.9
include_package_data = True
package_dir =
= src
Expand Down
1 change: 1 addition & 0 deletions src/dmfo/constants/mso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
del ModuleInfo
del _
"""

"""
from pathlib import Path
Expand Down