mirror of https://github.com/phonopy/phono3py.git
Release 2.8.0
This commit is contained in:
parent
a543a6bba8
commit
486d48ae95
|
@ -2,6 +2,11 @@
|
|||
|
||||
# Change Log
|
||||
|
||||
## Dec-4-2023: Version 2.8.0
|
||||
|
||||
- Maintenance release
|
||||
- Fix unit conversion for non-VASP calculators
|
||||
|
||||
## Jul-3-2023: Version 2.7.0
|
||||
|
||||
- Drop python 3.7 support
|
||||
|
@ -47,7 +52,7 @@
|
|||
|
||||
- Maintenance release to follow the change of phonopy at v2.12.1.
|
||||
- Installation using `setup.py` now requires creating `site.cfg` file. See
|
||||
https://phonopy.github.io/phono3py/install.html and
|
||||
<https://phonopy.github.io/phono3py/install.html> and
|
||||
[PR #59](https://github.com/phonopy/phono3py/pull/59).
|
||||
- Dorp python 3.6 support, and dependencies of numpy and matplotlib versions are
|
||||
updated:
|
||||
|
|
|
@ -57,7 +57,7 @@ copyright = "2015, Atsushi Togo"
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = "2.7"
|
||||
version = "2.8"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "2.7.0"
|
||||
|
||||
|
|
|
@ -33,4 +33,4 @@
|
|||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
__version__ = "2.7.0"
|
||||
__version__ = "2.8.0"
|
||||
|
|
|
@ -2,4 +2,4 @@ numpy >= 1.17.0
|
|||
PyYAML >= 5.3
|
||||
matplotlib >= 2.2.2
|
||||
h5py >= 3.0
|
||||
phonopy >=2.20,<2.21
|
||||
phonopy >=2.21,<2.22
|
||||
|
|
Loading…
Reference in New Issue