-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/2.2: (21 commits) updates updates update github actions bump version add support for ModelAdmin callable - #181 renamed `get_export_form` as `get_aa_export_form` remvoves admin-extra-url depencency removes pytest-pythonpath plugin add pre-commit let use black for formatting lint add suppport Django 4.2 improved bulk_update lint lint updates tests lint lint lint updates ...
- Loading branch information
Showing
58 changed files
with
854 additions
and
989 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
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 |
---|---|---|
|
@@ -19,5 +19,4 @@ sonar-project.properties | |
Pipfile | ||
Pipfile.lock | ||
poetry.lock | ||
pyproject.toml | ||
.venv/ |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
repos: | ||
- repo: local | ||
hooks: | ||
# Configuration for black exists in pyproject.toml, | ||
# but we let pre-commit take care of the file filtering. | ||
- id: black | ||
name: black | ||
entry: black | ||
language: python | ||
types: [python] | ||
require_serial: true | ||
- id: isort | ||
name: isort | ||
entry: isort | ||
language: python | ||
types: [python] | ||
- id: flake8 | ||
name: flake8 | ||
entry: flake8 | ||
language: python | ||
types: [python] |
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
Oops, something went wrong.