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 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`.
- Not strictly, but VSCode's `settings.json` may be written like

View File

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

View File

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

View File

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

View File

@ -49,9 +49,9 @@ copyright = "2015, Atsushi Togo"
# built documents.
#
# The short X.Y version.
version = "2.2"
version = "2.3"
# 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
# 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
# POSSIBILITY OF SUCH DAMAGE.
__version__ = "2.2.0"
__version__ = "2.3.0"

View File

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

View File

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