Set version 3.4

This commit is contained in:
Atsushi Togo 2024-08-23 22:22:28 +09:00
parent e0d68109a3
commit b49f55d306
4 changed files with 6 additions and 19 deletions

View File

@ -2,6 +2,10 @@
# Change Log # Change Log
## Aug-23-2024: Version 3.4
- Update for spglib v2.5 and for following the change in phonopy.
## Aug-8-2024: Version 3.3.4 ## Aug-8-2024: Version 3.3.4
- Fix of command line user interface. - Fix of command line user interface.

View File

@ -1,17 +0,0 @@
#!/bin/bash
br=`git rev-parse HEAD`
echo $br
read o u f <<< `git remote -v |grep origin |grep fetch`
echo "Repo: $o $u $br"
git describe --tags --dirty
TD=`mktemp -d`
WD=`pwd`
git branch
git clone $u $TD
cd $TD
git checkout $br
echo $u $br
git describe --tags --dirty | sed -e 's/\([.0-9]*\)-\(.*\)-g.*/\2/' -e 's/^[vr]//g' -e 's/rc-//g' > $WD/__nanoversion__.txt
cd $WD
rm -rf "$TD"

View File

@ -34,4 +34,4 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
__version__ = "3.3.4" __version__ = "3.4.0"

View File

@ -16,7 +16,7 @@ dependencies = [
"matplotlib>=2.2.2", "matplotlib>=2.2.2",
"h5py>=3.0", "h5py>=3.0",
"spglib>=2.3", "spglib>=2.3",
"phonopy>=2.26,<2.27", "phonopy>=2.27,<2.28",
] ]
license = { file = "LICENSE" } license = { file = "LICENSE" }