From 482aec7bd831258f7091dd3f17df39f0d5b6105e Mon Sep 17 00:00:00 2001 From: Atsushi Togo Date: Fri, 7 Feb 2025 18:39:22 +0900 Subject: [PATCH] Set version 3.14.0 --- doc/changelog.md | 4 ++++ doc/conf.py | 4 ++-- phono3py/interface/fc_calculator.py | 2 +- phono3py/version.py | 2 +- pyproject.toml | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/doc/changelog.md b/doc/changelog.md index 95fadbfb..40b18195 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -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 diff --git a/doc/conf.py b/doc/conf.py index 7f4a07ed..70b79c7d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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. diff --git a/phono3py/interface/fc_calculator.py b/phono3py/interface/fc_calculator.py index 65725a59..ac2ec11b 100644 --- a/phono3py/interface/fc_calculator.py +++ b/phono3py/interface/fc_calculator.py @@ -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 diff --git a/phono3py/version.py b/phono3py/version.py index 3c483621..6076aa7f 100644 --- a/phono3py/version.py +++ b/phono3py/version.py @@ -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" diff --git a/pyproject.toml b/pyproject.toml index d6a3177f..e8f7b0d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ dependencies = [ "matplotlib", "h5py", "spglib", - "phonopy>=2.36,<2.37", + "phonopy>=2.37,<2.38", ] license = { file = "LICENSE" }