mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-06 10:00:40 +02:00
Some checks failed
Native CMake Build / Configure and build using cmake (push) Failing after 3s
* Python module is now built using scikit-build-core: Dev/scikitbuild #1164 * slsdet is available on PyPI from this release onwards * Fixed broken import in typecaster.h #1181 * Dev/automate version number #1193 * Dev/automate version part2 #1209 * 9111: added expat to host section to fix conda #1216 * fix for gotthard.py to import slsdet properly * added slsFramesynchronizer to conda copy_lib.sh * version of release * update version of client * removed cmake <=3.28 that was added in 9.1.11 (main_library in meta.yaml in conda-recipes) * added slsFrameSynchronizer binary to conda * added numpy dependency to toml * added documentation for pip in installation Detailed Commits: * skeleton pyproject.toml * moved compiled extension into slsdet * WIP * WI{ * separated the recipes * restored comments, cleanup * cleaned meta yaml * added back some python versions * conda build of main library * fixed typo * removed conda build pin * added zlib * added workflow for python lib * patching libzmq and cleaned up cmake * removed compiler version * switched patch tool * reverted to scikit-build in pyproject.toml * added sls_detector bin * added sync, renamed action * update cmake<=3.28 in conda build requirements * Fixed broken import in typecaster.h (#1181) - Fixed the broken import _slsdet --> slsdet._slsdet caused by a previous upgrade - added tests that exercises the conversion from python to C++ and from C++ to python - Python unit tests now run in CI (!) * removed 3.28 restriction on cmake in meta.yaml * from #1216 to 9.1.1.rc that got lost in merge from develoepr, added expat to host section to fix conda build * back with the cmake restriction * fixing gotthard1 import * version number automated for python build * mistakenly set version back to 0.0.0 * updated github workflow scripts to support automatic version numbering with environment variable * managed to load VERSION file in yaml file - simplifies things * saving changes in git workflow failed * got typo in github workflow * updatet regex pattern to support postfix * normalized version to PEP 440 specification in update_version.py * bug did not support version 0.0.0 * added regex pattern matching to version in toml file * version now supports . before postfix * updates api version based on version file & converted shell script files to python * updated all makefiles * adresses review comments * updated release version and the api lib version * raise an exception if the pull socket python script had errors at startup (for eg if pyzmq was not installed) * cmake<=3.28 not required anymore * updated documentation for pip installation as well * 920/add numpy (#1226) * added numpy dependency * aded build specifications for python version and platform * release notes --------- Co-authored-by: froejdh_e <erik.frojdh@psi.ch> Co-authored-by: Fröjd Lars Erik <froejdh_e@pcmoench03.psi.ch> Co-authored-by: Erik Fröjdh <erik.frojdh@gmail.com> Co-authored-by: mazzol_a <mazzol_a@pc17378.psi.ch> Co-authored-by: AliceMazzoleni99 <alice.mazzoleni@psi.ch>
82 lines
2.6 KiB
Python
82 lines
2.6 KiB
Python
# SPDX-License-Identifier: LGPL-3.0-or-other
|
|
# Copyright (C) 2025 Contributors to the SLS Detector Package
|
|
"""
|
|
Script to update API VERSION file based on the version in VERSION file.
|
|
"""
|
|
|
|
import argparse
|
|
import sys
|
|
import os
|
|
import re
|
|
import time
|
|
from datetime import datetime
|
|
|
|
|
|
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
API_FILE = SCRIPT_DIR + "/slsSupportLib/include/sls/versionAPI.h"
|
|
|
|
VERSION_FILE = SCRIPT_DIR + "/VERSION"
|
|
|
|
parser = argparse.ArgumentParser(description = 'updates API version')
|
|
parser.add_argument('api_module_name', choices=["APILIB", "APIRECEIVER", "APICTB", "APIGOTTHARD2", "APIMOENCH", "APIEIGER", "APIXILINXCTB", "APIJUNGFRAU", "APIMYTHEN3"], help = 'module name to change api version options are: ["APILIB", "APIRECEIVER", "APICTB", "APIGOTTHARD2", "APIMOENCH", "APIEIGER", "APIXILINXCTB", "APIJUNGFRAU", "APIMYTHEN3"]')
|
|
parser.add_argument('api_dir', help = 'Relative or absolute path to the module code')
|
|
|
|
def update_api_file(new_api : str, api_module_name : str, api_file_name : str):
|
|
|
|
regex_pattern = re.compile(rf'#define\s+{api_module_name}\s+')
|
|
with open(api_file_name, "r") as api_file:
|
|
lines = api_file.readlines()
|
|
|
|
with open(api_file_name, "w") as api_file:
|
|
for line in lines:
|
|
if regex_pattern.match(line):
|
|
api_file.write(f'#define {api_module_name} "{new_api}"\n')
|
|
else:
|
|
api_file.write(line)
|
|
|
|
def get_latest_modification_date(directory : str):
|
|
latest_time = 0
|
|
latest_date = None
|
|
|
|
for root, dirs, files in os.walk(directory):
|
|
for file in files:
|
|
if file.endswith(".o"):
|
|
continue
|
|
full_path = os.path.join(root, file)
|
|
try:
|
|
mtime = os.path.getmtime(full_path)
|
|
if mtime > latest_time:
|
|
latest_time = mtime
|
|
except FileNotFoundError:
|
|
continue
|
|
|
|
latest_date = datetime.fromtimestamp(latest_time).strftime("%y%m%d")
|
|
|
|
return latest_date
|
|
|
|
|
|
def update_api_version(api_module_name : str, api_dir : str):
|
|
api_date = get_latest_modification_date(api_dir)
|
|
api_date = "0x"+str(api_date)
|
|
|
|
with open(VERSION_FILE, "r") as version_file:
|
|
api_version = version_file.read().strip()
|
|
|
|
api_version = api_version + " " + api_date #not sure if we should give an argument option version_branch
|
|
|
|
update_api_file(api_version, api_module_name, API_FILE)
|
|
|
|
print(f"updated {api_module_name} api version to: {api_version}")
|
|
|
|
if __name__ == "__main__":
|
|
|
|
args = parser.parse_args()
|
|
|
|
api_dir = SCRIPT_DIR + "/" + args.api_dir
|
|
|
|
|
|
update_api_version(args.api_module_name, api_dir)
|
|
|
|
|