From 7c425375c4c001fa1e5e8ed4d3cc4543e9ecfc88 Mon Sep 17 00:00:00 2001 From: Atsushi Togo Date: Wed, 13 Nov 2024 14:20:00 +0900 Subject: [PATCH 1/2] Set version 3.7.0 --- doc/changelog.md | 4 ++++ doc/conf.py | 4 ++-- phono3py/version.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/doc/changelog.md b/doc/changelog.md index 4faa2c1f..fea78c71 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -2,6 +2,10 @@ # Change Log +## Nov-13-2024: Version 3.7.0 + +- Update to follow the change of phonopy's internal functions + ## Nov-3-2024: Version 3.6.0 - Maintenance release. diff --git a/doc/conf.py b/doc/conf.py index 2f64b5f2..e42ff2fa 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = "3.6" +version = "3.7" # The full version, including alpha/beta/rc tags. -release = "3.6.0" +release = "3.7.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 ea0e6101..6dc2d7e2 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.6.0" +__version__ = "3.7.0" From cf3e5ff7a248f1a1ad63ad0a5abebf5fef037356 Mon Sep 17 00:00:00 2001 From: Atsushi Togo Date: Wed, 13 Nov 2024 14:23:06 +0900 Subject: [PATCH 2/2] Add python 3.13 in github workflow --- .github/workflows/phono3py-pytest-conda.yml | 2 +- .github/workflows/publish-gh-pages.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phono3py-pytest-conda.yml b/.github/workflows/phono3py-pytest-conda.yml index 66bb1385..99b0a596 100644 --- a/.github/workflows/phono3py-pytest-conda.yml +++ b/.github/workflows/phono3py-pytest-conda.yml @@ -12,7 +12,7 @@ jobs: shell: bash -l {0} strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/publish-gh-pages.yml b/.github/workflows/publish-gh-pages.yml index 4e397cb2..15b4e26e 100644 --- a/.github/workflows/publish-gh-pages.yml +++ b/.github/workflows/publish-gh-pages.yml @@ -12,7 +12,7 @@ jobs: shell: bash -l {0} strategy: matrix: - python-version: ["3.11"] + python-version: ["3.12"] steps: - uses: actions/checkout@v4