-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ganesh Hubale <ganeshhubale03@gmail.com>
- Loading branch information
1 parent
1d75ffd
commit d05d42d
Showing
6 changed files
with
66 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,42 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.4.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
name: Trim Trailing Whitespace | ||
language_version: python3 | ||
- id: end-of-file-fixer | ||
name: File Ending | ||
language_version: python3 | ||
- id: debug-statements | ||
name: Debug Statments | ||
language_version: python3 | ||
- id: flake8 | ||
name: Flake8 | ||
language_version: python3 | ||
verbose: true | ||
- id: check-yaml | ||
- repo: https://github.com/asottile/reorder_python_imports | ||
rev: v1.8.0 | ||
hooks: | ||
- id: reorder-python-imports | ||
name: Reorder Python Imports | ||
language_version: python3 | ||
- repo: https://github.com/psf/black | ||
rev: 19.10b0 | ||
hooks: | ||
- id: black | ||
name: Formate with Black | ||
args: [--safe, --quiet, --line-length, "100"] | ||
language_version: python3 | ||
require_serial: true | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v1.25.2 | ||
hooks: | ||
- id: pyupgrade | ||
name: Python Package Checks | ||
language_version: python3 | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.4.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
name: Trim Trailing Whitespace | ||
language_version: python3.9 # Updated to Python 3.9 | ||
- id: end-of-file-fixer | ||
name: File Ending | ||
language_version: python3.9 # Updated to Python 3.9 | ||
- id: debug-statements | ||
name: Debug Statements | ||
language_version: python3.9 # Updated to Python 3.9 | ||
- id: flake8 | ||
name: Flake8 | ||
language_version: python3.9 # Updated to Python 3.9 | ||
verbose: true | ||
- id: check-yaml | ||
name: Check YAML | ||
|
||
- repo: https://github.com/asottile/reorder_python_imports | ||
rev: v3.7.0 | ||
hooks: | ||
- id: reorder-python-imports | ||
name: Reorder Python Imports | ||
language_version: python3.9 # Updated to Python 3.9 | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 22.12.0 # Ensure this version supports Python 3.9 | ||
hooks: | ||
- id: black | ||
name: Format with Black | ||
args: [--safe, --quiet, --line-length, "100"] | ||
language_version: python3.9 # Updated to Python 3.9 | ||
require_serial: true | ||
|
||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v3.10.0 | ||
hooks: | ||
- id: pyupgrade | ||
name: Python Package Checks | ||
language_version: python3.9 # Updated to Python 3.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from setuptools import setup | ||
|
||
setup(use_scm_version=True,) | ||
setup( | ||
use_scm_version=True, | ||
) |