Skip to content

Commit

Permalink
Merge pull request #128 from spglib/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit autoupdate
  • Loading branch information
lan496 authored Jan 29, 2024
2 parents 988246b + d0316cd commit aed9f52
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
- id: end-of-file-fixer
# formatter
- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.1.1
hooks:
- id: black
# linter
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Import top APIs and version."""

from importlib.metadata import PackageNotFoundError, version

from spgrep.core import ( # noqa: F401
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/core.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Enumerate unitary irreps from crystal structure or symmetry operations."""

from __future__ import annotations

from typing import Literal
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/corep.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Spin co-representation."""

from __future__ import annotations

from typing import Literal
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/group.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Group-theory related functions."""

from __future__ import annotations

from itertools import product
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/irreps.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""On-the-fly irreps generations."""

from __future__ import annotations

from itertools import product
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/pointgroup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Decomposition of crystallographic point groups as solvable groups."""

from __future__ import annotations

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/representation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Representation-matrix related implementations."""

from __future__ import annotations

from itertools import product
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/spinor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Spin representation."""

from __future__ import annotations

from itertools import product
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/tensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Symmetric tensor."""

from __future__ import annotations

from itertools import permutations, product
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/transform.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Transformation of space group and kpoints."""

from __future__ import annotations

from typing import Literal
Expand Down
1 change: 1 addition & 0 deletions src/spgrep/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utility functions."""

from __future__ import annotations

from typing import Any, Literal
Expand Down

0 comments on commit aed9f52

Please sign in to comment.