1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-12 03:41:59 +02:00

(v2.1.1.9110) update Py pkg

This commit is contained in:
2024-11-21 22:23:40 +01:00
parent 7f4ea96c09
commit 059618e710
10 changed files with 9 additions and 9 deletions

View File

@ -73,13 +73,13 @@ if not isinstalled('AMR'):
try:
python_amr_version = metadata.version('AMR')
except metadata.PackageNotFoundError:
python_amr_version = None
python_amr_version = ''
# R package version of AMR
r_amr_version = robjects.r(f'as.character(packageVersion("AMR", lib.loc = "{r_lib_path}"))')[0]
# Compare R and Python package versions
if python_amr_version and r_amr_version != python_amr_version:
if r_amr_version != python_amr_version:
try:
print(f"{BLUE}AMR:{RESET} Updating package version{RESET}", flush=True)
utils = importr('utils')