Release 2.8.0

This commit is contained in:
Atsushi Togo 2023-12-04 12:05:37 +09:00
parent a543a6bba8
commit 486d48ae95
5 changed files with 10 additions and 5 deletions

View File

@ -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:

View File

@ -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"

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.7.0"
__version__ = "2.8.0"

View File

@ -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

View File

@ -319,7 +319,7 @@ def main(build_dir):
"matplotlib>=2.2.2",
"h5py>=3.0",
"spglib>=2.0",
"phonopy>=2.20,<2.21",
"phonopy>=2.21,<2.22",
],
provides=["phono3py"],
scripts=scripts_phono3py,