mirror of https://github.com/phonopy/phono3py.git
Update document and version to v2.3.0
This commit is contained in:
parent
0ea7586b8f
commit
e2b3d27e60
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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];
|
||||||
|
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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 |
|
@ -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"
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue