mirror of https://github.com/phonopy/phono3py.git
Set version 3.9.0
This commit is contained in:
parent
e1cc3c19d0
commit
0e272b6beb
|
@ -2,6 +2,10 @@
|
|||
|
||||
# Change Log
|
||||
|
||||
## Dec-6-2024: Version 3.9.0
|
||||
|
||||
- Update to follow the change of phonopy's internal functions
|
||||
|
||||
## Nov-25-2024: Version 3.8.0
|
||||
|
||||
- Follow the change due to phonopy's refactoring of MLP interface.
|
||||
|
|
|
@ -406,6 +406,10 @@ These are shortcuts of `--fc-calc symfc` and `--fc-calc alm`, respectively.
|
|||
Please be careful that `--symfc` and `--sym-fc` (deprecated) are similar, but
|
||||
different.
|
||||
|
||||
Refer to the [symfc](https://phonopy.github.io/phonopy/setting-tags.html#symfc)
|
||||
and [alm](https://phonopy.github.io/phonopy/setting-tags.html#alm) sections in
|
||||
the Phonopy documentation for additional details.
|
||||
|
||||
## Force constants
|
||||
|
||||
(compact_fc_option)=
|
||||
|
|
|
@ -58,9 +58,9 @@ copyright = "2015, Atsushi Togo"
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = "3.8"
|
||||
version = "3.9"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "3.8.0"
|
||||
release = "3.9.0"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
@ -34,4 +34,4 @@
|
|||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
__version__ = "3.8.0"
|
||||
__version__ = "3.9.0"
|
||||
|
|
|
@ -10,12 +10,12 @@ description = "This is the phono3py module."
|
|||
authors = [{ name = "Atsushi Togo", email = "atztogo@gmail.com" }]
|
||||
requires-python = ">=3.9"
|
||||
dependencies = [
|
||||
"numpy>=1.17.0",
|
||||
"numpy",
|
||||
"scipy",
|
||||
"PyYAML>=5.3",
|
||||
"matplotlib>=2.2.2",
|
||||
"h5py>=3.0",
|
||||
"spglib>=2.3",
|
||||
"PyYAML",
|
||||
"matplotlib",
|
||||
"h5py",
|
||||
"spglib",
|
||||
"phonopy>=2.32,<2.33",
|
||||
]
|
||||
license = { file = "LICENSE" }
|
||||
|
|
Loading…
Reference in New Issue