From 0e272b6beb850235676dafb6d36b4e7b9de3335c Mon Sep 17 00:00:00 2001 From: Atsushi Togo Date: Fri, 6 Dec 2024 08:29:46 +0900 Subject: [PATCH] Set version 3.9.0 --- doc/changelog.md | 4 ++++ doc/command-options.md | 4 ++++ doc/conf.py | 4 ++-- phono3py/version.py | 2 +- pyproject.toml | 10 +++++----- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/doc/changelog.md b/doc/changelog.md index dd7516ef..8f68a567 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -2,6 +2,10 @@ # Change Log +## Dec-6-2024: Version 3.9.0 + +- Update to follow the change of phonopy's internal functions + ## Nov-25-2024: Version 3.8.0 - Follow the change due to phonopy's refactoring of MLP interface. diff --git a/doc/command-options.md b/doc/command-options.md index 748a074b..8b603d1f 100644 --- a/doc/command-options.md +++ b/doc/command-options.md @@ -406,6 +406,10 @@ These are shortcuts of `--fc-calc symfc` and `--fc-calc alm`, respectively. Please be careful that `--symfc` and `--sym-fc` (deprecated) are similar, but different. +Refer to the [symfc](https://phonopy.github.io/phonopy/setting-tags.html#symfc) +and [alm](https://phonopy.github.io/phonopy/setting-tags.html#alm) sections in +the Phonopy documentation for additional details. + ## Force constants (compact_fc_option)= diff --git a/doc/conf.py b/doc/conf.py index 8a8a5292..5d421078 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = "3.8" +version = "3.9" # The full version, including alpha/beta/rc tags. -release = "3.8.0" +release = "3.9.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/phono3py/version.py b/phono3py/version.py index 23d47634..d2f316b5 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.8.0" +__version__ = "3.9.0" diff --git a/pyproject.toml b/pyproject.toml index 82400f46..910ddb95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,12 +10,12 @@ description = "This is the phono3py module." authors = [{ name = "Atsushi Togo", email = "atztogo@gmail.com" }] requires-python = ">=3.9" dependencies = [ - "numpy>=1.17.0", + "numpy", "scipy", - "PyYAML>=5.3", - "matplotlib>=2.2.2", - "h5py>=3.0", - "spglib>=2.3", + "PyYAML", + "matplotlib", + "h5py", + "spglib", "phonopy>=2.32,<2.33", ] license = { file = "LICENSE" }