upd version string in ML-PACE package

This commit is contained in:
Yury Lysogorskiy
2023-11-27 22:38:35 +01:00
parent d4fe21f34d
commit 99f0a7aa8e
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
set(PACELIB_URL "https://github.com/ICAMS/lammps-user-pace/archive/refs/tags/v.2023.11.25.tar.gz" CACHE STRING "URL for PACE evaluator library sources")
set(PACELIB_URL "https://github.com/ICAMS/lammps-user-pace/archive/refs/tags/v.2023.11.25.fix.tar.gz" CACHE STRING "URL for PACE evaluator library sources")
set(PACELIB_MD5 "fda61c88a6c6a335d5fc10a86a5aa710" CACHE STRING "MD5 checksum of PACE evaluator library tarball")
set(PACELIB_MD5 "b45de9a633f42ed65422567e3ce56f9f" CACHE STRING "MD5 checksum of PACE evaluator library tarball")
mark_as_advanced(PACELIB_URL)
mark_as_advanced(PACELIB_MD5)
GetFallbackURL(PACELIB_URL PACELIB_FALLBACK)

View File

@ -18,11 +18,11 @@ from install_helpers import fullpath, geturl, checkmd5sum, getfallback
# settings
thisdir = fullpath('.')
version ='v.2023.11.25'
version ='v.2023.11.25.fix'
# known checksums for different PACE versions. used to validate the download.
checksums = { \
'v.2023.11.25': 'fda61c88a6c6a335d5fc10a86a5aa710'
'v.2023.11.25.fix': 'b45de9a633f42ed65422567e3ce56f9f'
}
parser = ArgumentParser(prog='Install.py', description="LAMMPS library build wrapper script")