Skip to content

Commit

Permalink
Set version 3.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
atztogo committed Feb 7, 2025
1 parent 948faad commit 482aec7
Show file tree
Hide file tree
Showing 5 changed files with 9 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

## Feb-7-2025: Version 3.14.0

- Release to follow the change of phonopy

## Feb-5-2025: Version 3.13.0

- Release to follow the change of phonopy
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = "3.13"
version = "3.14"
# The full version, including alpha/beta/rc tags.
release = "3.13.0"
release = "3.14.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion phono3py/interface/fc_calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def estimate_symfc_memory_usage(
"""
symfc_solver = SymfcFCSolver(supercell, symmetry, options={"cutoff": {3: cutoff}})
basis_size = symfc_solver._symfc.estimate_basis_size(orders=[3])[3]
basis_size = symfc_solver.estimate_basis_size(orders=[3])[3]
memsize = basis_size**2 * 3 * 8 / 10**9
memsize2 = len(supercell) * 3 * batch_size * basis_size * 8 / 10**9
return memsize, memsize2
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.13.0"
__version__ = "3.14.0"
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.36,<2.37",
"phonopy>=2.37,<2.38",
]
license = { file = "LICENSE" }

Expand Down

0 comments on commit 482aec7

Please sign in to comment.