mirror of https://github.com/phonopy/phono3py.git
Set version v1.19.0 and fixed phonopy==2.6.0 dependency
This commit is contained in:
parent
b880b6e748
commit
8a3c83e38f
|
@ -3,6 +3,15 @@
|
|||
Change Log
|
||||
==========
|
||||
|
||||
Mar-2-2020: Version 1.19.0
|
||||
--------------------------
|
||||
|
||||
- Improvements of phono3py loader and API.
|
||||
- Improvement of interfaces to calculators. Now it is expected to be
|
||||
much easier to implement calculator interface if it exists in
|
||||
phonopy.
|
||||
- Fixed dependency to phonopy v2.6.0.
|
||||
|
||||
Dec-22-2019: Version 1.18.2
|
||||
---------------------------
|
||||
|
||||
|
|
|
@ -49,9 +49,9 @@ copyright = u'2015, Atsushi Togo'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '1.18'
|
||||
version = '1.19'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.18.2'
|
||||
release = '1.19.0'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
@ -32,4 +32,4 @@
|
|||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
__version__ = "1.18.3"
|
||||
__version__ = "1.19.0"
|
||||
|
|
|
@ -2,4 +2,4 @@ numpy>=1.11.1
|
|||
PyYAML>=3.11
|
||||
matplotlib>=1.5.3
|
||||
h5py>=2.6.0
|
||||
phonopy>=1.12.8
|
||||
phonopy==2.6.0
|
||||
|
|
2
setup.py
2
setup.py
|
@ -305,7 +305,7 @@ if __name__ == '__main__':
|
|||
url='http://phonopy.github.io/phono3py/',
|
||||
packages=packages_phono3py,
|
||||
install_requires=['numpy', 'scipy', 'PyYAML', 'matplotlib',
|
||||
'h5py', 'phonopy>=2.4.3'],
|
||||
'h5py', 'phonopy==2.6.0'],
|
||||
provides=['phono3py'],
|
||||
scripts=scripts_phono3py,
|
||||
ext_modules=[extension_lapackepy, extension_phono3py],
|
||||
|
|
Loading…
Reference in New Issue