Merge branch 'rc'

This commit is contained in:
Atsushi Togo 2024-06-07 16:36:57 +09:00
commit 10b04a06f8
5 changed files with 9 additions and 4 deletions

View File

@ -12,7 +12,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3

View File

@ -2,6 +2,10 @@
# Change Log
## Jun-7-2024: Version 3.1.1
- Minor fix related to typehint for python-3.8.
## Jun-7-2024: Version 3.1.0
- Change to write forces in phono3py-yaml as default.

View File

@ -58,9 +58,9 @@ copyright = "2015, Atsushi Togo"
# built documents.
#
# The short X.Y version.
version = "3.0"
version = "3.1"
# The full version, including alpha/beta/rc tags.
release = "3.1.0"
release = "3.1.1"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -33,6 +33,7 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
from __future__ import annotations
import copy
from collections.abc import Sequence

View File

@ -34,4 +34,4 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
__version__ = "3.1.0"
__version__ = "3.1.1"