Searched +full:python +full:- +full:version (Results 1 – 4 of 4) sorted by relevance
/hal_stm32-3.6.0/.github/workflows/ |
D | test.yml | 7 runs-on: ubuntu-latest 9 fail-fast: false 11 python-version: ['3.7', '3.8', '3.9', '3.10'] 13 - uses: actions/checkout@v1 14 - name: Set up Python 15 uses: actions/setup-python@v1 17 python-version: ${{ matrix.python-version }} 18 - name: install dependencies 20 pip3 install -r scripts/requirements.txt 21 pip3 install -r scripts/requirements-test.txt [all …]
|
/hal_stm32-3.6.0/scripts/ |
D | update_stm32_package.py | 1 #!/usr/bin/python 3 SPDX-License-Identifier: Apache-2.0 6 from the latest version on https://github.com/STMicroelectronics 7 get the patch between initial version and latest version 10 'python3 update_stm32_package.py -s <stm32_serie>' 26 "-s", 27 "--stm32_serie", 34 "-c", 35 "--noclean", 41 "-r", [all …]
|
D | ble_library.py | 1 #!/usr/bin/python 3 SPDX-License-Identifier: Apache-2.0 33 "Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_Hid/Core/Inc/app_common.h", 34 "Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_Hid/Core/Inc/app_conf.h", 35 "Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_Hid/Core/Inc/hw_if.h", 36 "Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_Hid/STM32_WPAN/Target/" 38 "Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_Hid/STM32_WPAN/App/" 42 ble_heartrate_app_path = "Projects/NUCLEO-WBA55CG/Applications/BLE/BLE_HeartRate" 196 make_version: latest STM32Cube version. 197 make_commit: Commit corresponding to latest STM32Cube version. [all …]
|
D | serie_update.py | 1 #!/usr/bin/python 3 SPDX-License-Identifier: Apache-2.0 37 def version_tuple(version): argument 38 """Remove 'v' in front of version and convert it to tuple, 41 v = re.sub("v", r"", version) 62 version_update: string to force a specified version to be updated 66 return previous zephyr cube version. 173 ("git", "ls-remote", "--heads", "origin", "master"), 175 ).decode("utf-8") 193 self.os_cmd(("git", "clean", "-fdx"), cwd=self.stm32cube_serie_path) [all …]
|