mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-03-03 06:12:40 +01:00
* some test about building docs * indendation error * typo - * forgot to get package hdf5 * had to add shinx and doxygen as well * oke created environmnet file * typo * dont use conda * dont use conda * cannot upload artefact commit to gh-pages * correct copy * mmh * try with tokem * set write permisison * script to update main_index for versioned documentation * rename main_index to index * use absolute path in python script * update main_index upon a release * extract release type from version * copy release notes * updated links from devdoc to slsDetectorPackage, handling .md for new versions * changed page source * updated documentation link in README * add guideline for Package Versioning to documentation also used as a test * typo in workflow * why didnt it copy? * copied from build instead of docs * change back - trigger for push * only trigger for pull_requests and releases * removed conda environment file * automatically update documentation paths in release notes * only keep templated README.md * added README and updated links * update Release notes template manually * generate release notes script not needed anymore * modified readme to reflect dependencies insides build from source * subheadings in dependencies --------- Co-authored-by: Dhanya Thattil <dhanya.thattil@psi.ch>
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
# SPDX-License-Identifier: LGPL-3.0-or-other
|
|
# Copyright (C) 2025 Contributors to the SLS Detector Package
|
|
"""
|
|
script to update API VERSION for slsReceiverSoftware or slsDetectorSoftware
|
|
"""
|
|
|
|
import argparse
|
|
from pathlib import Path
|
|
|
|
from updateAPIVersion import update_api_version
|
|
|
|
ROOT_DIR = Path(__file__).resolve().parent.parent
|
|
|
|
parser = argparse.ArgumentParser(description = 'updates API version')
|
|
parser.add_argument('module_name', nargs="?", choices=["slsDetectorSoftware", "slsReceiverSoftware", "all"], default="all", help = 'module name to change api version options are: ["slsDetectorSoftware", "slsReceiverSoftware, "all"]')
|
|
|
|
if __name__ == "__main__":
|
|
args = parser.parse_args()
|
|
|
|
if args.module_name == "all":
|
|
client_names = ["APILIB", "APIRECEIVER"]
|
|
client_directories = [ROOT_DIR / "slsDetectorSoftware", ROOT_DIR / "slsReceiverSoftware"]
|
|
elif args.module_name == "slsDetectorSoftware":
|
|
client_names = ["APILIB"]
|
|
client_directories = [ROOT_DIR / "slsDetectorSoftware"]
|
|
else:
|
|
client_names = ["APIRECEIVER"]
|
|
client_directories = [ROOT_DIR / "slsReceiverSoftware"]
|
|
|
|
for client_name, client_directory in zip(client_names, client_directories):
|
|
update_api_version(client_name, client_directory)
|
|
|
|
|
|
|