mirror of https://github.com/phonopy/phono3py.git
Set version 3.3.2
This commit is contained in:
parent
251d54137f
commit
a77b73a5d2
|
@ -2,6 +2,11 @@
|
|||
|
||||
# Change Log
|
||||
|
||||
## Jul-22-2024: Version 3.3.2
|
||||
|
||||
- Minor fix of `phono3py.load` function for reading displacements from
|
||||
`phono3py_disp.yaml` like file that doesn't contain forces.
|
||||
|
||||
## Jul-8-2024: Version 3.3.1
|
||||
|
||||
- Major refactoring to isolate reciprocal space grid code.
|
||||
|
|
|
@ -60,7 +60,7 @@ copyright = "2015, Atsushi Togo"
|
|||
# The short X.Y version.
|
||||
version = "3.3"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "3.3.1"
|
||||
release = "3.3.2"
|
||||
|
||||
# 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.3.1"
|
||||
__version__ = "3.3.2"
|
||||
|
|
|
@ -8,8 +8,8 @@ from phono3py import Phono3py
|
|||
def test_phono3py_load(si_pbesol_without_forcesets: Phono3py):
|
||||
"""Test phono3py.load.
|
||||
|
||||
Check phono3py.load can read displacements from phono3py_disp.yaml like file that
|
||||
doesn't contain forces.
|
||||
Check phono3py.load can read displacements from phono3py_disp.yaml like file
|
||||
that doesn't contain forces.
|
||||
|
||||
"""
|
||||
ph3 = si_pbesol_without_forcesets
|
||||
|
|
Loading…
Reference in New Issue