Skip to content

Commit

Permalink
Set version 3.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
atztogo committed Mar 1, 2025
1 parent 5bcb753 commit 8dac418
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# Change Log

## Mar-1-2025: Version 3.14.1

- Release to follow the change of phonopy

## Feb-7-2025: Version 3.14.0

- Release to follow the change of phonopy
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = "3.14"
# The full version, including alpha/beta/rc tags.
release = "3.14.0"
release = "3.14.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 8 additions & 2 deletions phono3py/phonon3/fc3.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
import numpy as np
from phonopy.harmonic.force_constants import (
distribute_force_constants,
get_fc2,
get_nsym_list_and_s2pp,
get_positions_sent_by_rot_inv,
get_rotated_displacement,
similarity_transformation,
solve_force_constants,
)
from phonopy.interface.fc_calculator import get_fc2
from phonopy.structure.atoms import PhonopyAtoms
from phonopy.structure.cells import Primitive, compute_all_sg_permutations
from phonopy.structure.symmetry import Symmetry
Expand Down Expand Up @@ -84,7 +84,13 @@ def get_fc3(
"""
# fc2 has to be full matrix to compute delta-fc2
# p2s_map elements are extracted if is_compact_fc=True at the last part.
fc2 = get_fc2(supercell, symmetry, disp_dataset)
fc2 = get_fc2(
supercell,
disp_dataset,
primitive=primitive,
is_compact_fc=False,
symmetry=symmetry,
)
fc3 = _get_fc3_least_atoms(
supercell,
primitive,
Expand Down
2 changes: 1 addition & 1 deletion phono3py/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

__version__ = "3.14.0"
__version__ = "3.14.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies = [
"matplotlib",
"h5py",
"spglib",
"phonopy>=2.37,<2.38",
"phonopy>=2.37.1,<2.38",
]
license = { file = "LICENSE" }

Expand Down

0 comments on commit 8dac418

Please sign in to comment.