Skip to content

Commit

Permalink
Update pylint to support python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaojunfeng committed May 10, 2024
1 parent 526af90 commit 0694aeb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ tests = [
]
pre-commit = [
"pre-commit",
"pylint",
"pylint>=3",
"yapf>=0.28",
"prospector>=1.3.1",
"ruamel.yaml"
Expand Down
1 change: 1 addition & 0 deletions src/aiida_wannier90/calculations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Calculation classes for the aiida-wannier90 plugin."""

from .postw90 import Postw90Calculation
from .wannier90 import Wannier90Calculation

Expand Down
1 change: 1 addition & 0 deletions src/aiida_wannier90/calculations/postw90.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Calculation class for the postw90.x code of Wannier90."""

import fnmatch
import os

Expand Down
1 change: 1 addition & 0 deletions src/aiida_wannier90/parsers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Parsers for the Wannier90 plugin."""

from .postw90 import Postw90Parser
from .wannier90 import Wannier90Parser

Expand Down

0 comments on commit 0694aeb

Please sign in to comment.