-
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.
Merge pull request #92 from JuDFTteam/release_111
Release v1.1.1
- Loading branch information
Showing
353 changed files
with
36,914 additions
and
7,578 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 |
---|---|---|
@@ -1,9 +1,46 @@ | ||
# modernizer: make sure our code-base is Python 3 ready | ||
- repo: https://github.com/python-modernize/python-modernize.git | ||
sha: a234ce4e185cf77a55632888f1811d83b4ad9ef2 | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.5.0 | ||
hooks: | ||
- id: double-quote-string-fixer | ||
types: [python] | ||
- id: end-of-file-fixer | ||
- id: fix-encoding-pragma | ||
- id: mixed-line-ending | ||
types: [python] | ||
- id: trailing-whitespace | ||
types: [python] | ||
|
||
- repo: git://github.com/pre-commit/mirrors-yapf | ||
rev: v0.30.0 | ||
hooks: | ||
- id: python-modernize | ||
exclude: ^docs/ | ||
args: | ||
- --write | ||
- --nobackups | ||
- id: yapf | ||
name: yapf | ||
types: [python] | ||
exclude: &exclude_files > | ||
(?x)^( | ||
docs/.*| | ||
)$ | ||
args: ['-i'] | ||
|
||
- repo: local | ||
hooks: | ||
|
||
- id: pylint | ||
name: pylint | ||
entry: pylint | ||
types: [python] | ||
language: system | ||
exclude: '^(docs/)|(examples/)' | ||
|
||
- id: version-number | ||
name: Check version numbers | ||
entry: python ./utils/validate_version_consistency.py | ||
language: system | ||
files: >- | ||
(?x)^( | ||
setup.json| | ||
utils/validate_version_consistency.py| | ||
aiida_fleur/__init__.py | ||
)$ | ||
pass_filenames: false |
Oops, something went wrong.