Update document and version to v2.3.0

This commit is contained in:
Atsushi Togo 2022-04-09 15:23:47 +09:00
parent 0ea7586b8f
commit e2b3d27e60
9 changed files with 18 additions and 15 deletions

View File

@ -21,7 +21,7 @@ phono3py repository.
- Github issues is the place to discuss about phono3py issues. - Github issues is the place to discuss about phono3py issues.
- Github pull request is the place to request merging source code. - Github pull request is the place to request merging source code.
- Python 3.7 will be the minimum requirement soon. - Python 3.7 is the minimum requirement.
- Formatting is written in `pyproject.toml`. - Formatting is written in `pyproject.toml`.
- Not strictly, but VSCode's `settings.json` may be written like - Not strictly, but VSCode's `settings.json` may be written like

View File

@ -26,27 +26,27 @@ build:
requirements: requirements:
build: build:
- python>=3.6 - python>=3.7
- pip - pip
- numpy>=1.11 - numpy>=1.15
- scipy - scipy
- matplotlib-base>=2.0.0 - matplotlib-base>=2.2.2
- pyyaml - pyyaml
- h5py - h5py
- phonopy>=2.12,<2.13 - phonopy>=2.13,<2.14
- openblas - openblas
- libgfortran - libgfortran
- spglib - spglib
run: run:
- python>=3.6 - python>=3.7
- pip - pip
- numpy>=1.11 - numpy>=1.15
- scipy - scipy
- matplotlib-base>=2.0.0 - matplotlib-base>=2.2.2
- pyyaml - pyyaml
- h5py - h5py
- phonopy>=2.12,<2.13 - phonopy>=2.13,<2.14
- openblas - openblas
- libgfortran - libgfortran
- spglib - spglib

View File

@ -3,7 +3,6 @@ digraph phonopy {
"Phono3py (force-sets)" [shape = box, style = filled]; "Phono3py (force-sets)" [shape = box, style = filled];
"Phono3py (FC)" [shape = box, style = filled]; "Phono3py (FC)" [shape = box, style = filled];
"Phono3py (LTC)" [shape = box, style = filled]; "Phono3py (LTC)" [shape = box, style = filled];
"Supercell + displacements" [shape = box];
"Force calc." [shape = octagon]; "Force calc." [shape = octagon];
"Force-constants calc." [shape = octagon]; "Force-constants calc." [shape = octagon];

View File

@ -2,6 +2,10 @@
# Change Log # Change Log
## Apr-9-2022: Version 2.3.0
- Maintenance release including small bug fixes.
## Feb-14-2022: Version 2.2.0 ## Feb-14-2022: Version 2.2.0
- Maintenance release to follow the change of phonopy at v2.12.1. - Maintenance release to follow the change of phonopy at v2.12.1.

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 77 KiB

View File

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

View File

@ -2,4 +2,4 @@ numpy >= 1.15.0
PyYAML PyYAML
matplotlib >= 2.2.2 matplotlib >= 2.2.2
h5py h5py
phonopy >=2.13,<2.14 phonopy >=2.14,<2.15

View File

@ -198,7 +198,7 @@ if __name__ == "__main__":
"matplotlib>=2.2.2", "matplotlib>=2.2.2",
"h5py", "h5py",
"spglib", "spglib",
"phonopy>=2.13,<2.14", "phonopy>=2.14,<2.15",
], ],
provides=["phono3py"], provides=["phono3py"],
scripts=scripts_phono3py, scripts=scripts_phono3py,