From f18f952a4814194e1c08ba192b8fc71febfc43b0 Mon Sep 17 00:00:00 2001 From: Atsushi Togo Date: Wed, 20 Mar 2024 09:41:29 +0900 Subject: [PATCH] Set version 2.10.0 --- doc/changelog.md | 4 ++++ doc/conf.py | 4 ++-- doc/install.md | 2 +- phono3py/version.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/doc/changelog.md b/doc/changelog.md index a2cfd955..c6911716 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -2,6 +2,10 @@ # Change Log +## Mar-20-2024: Version 2.10.0 + +- Maintenance release + ## Feb-2-2024: Version 2.9.2 - `boundary_mfp` value is stored in `kappa-*.hdf5` file when it is specified. diff --git a/doc/conf.py b/doc/conf.py index cae6e3a1..140fdb53 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -58,9 +58,9 @@ copyright = "2015, Atsushi Togo" # built documents. # # The short X.Y version. -version = "2.9" +version = "2.10" # The full version, including alpha/beta/rc tags. -release = "2.9.2" +release = "2.10.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/install.md b/doc/install.md index 834c6314..16d64e77 100644 --- a/doc/install.md +++ b/doc/install.md @@ -161,7 +161,7 @@ wrong python libraries can be imported. For macOS ARM64 system, currently only openblas can be chosen: ```bash - % conda install numpy scipy h5py pyyaml matplotlib-base c-compiler spglib cmake openblas="0.3.18" + % conda install numpy scipy h5py pyyaml matplotlib-base c-compiler spglib cmake openblas ``` Note that using hdf5 files on NFS mounted file system, you may have to disable diff --git a/phono3py/version.py b/phono3py/version.py index 434dd992..50d3a786 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__ = "2.9.2" +__version__ = "2.10.0" diff --git a/requirements.txt b/requirements.txt index 4e13b8dc..ed682251 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ numpy >= 1.17.0 PyYAML >= 5.3 matplotlib >= 2.2.2 h5py >= 3.0 -phonopy >=2.21,<2.22 +phonopy >=2.22,<2.23 diff --git a/setup.py b/setup.py index 7f0c1780..d221f990 100644 --- a/setup.py +++ b/setup.py @@ -320,7 +320,7 @@ def main(build_dir): "matplotlib>=2.2.2", "h5py>=3.0", "spglib>=2.0", - "phonopy>=2.21,<2.22", + "phonopy>=2.22,<2.23", ], provides=["phono3py"], scripts=scripts_phono3py,