Home
last modified time | relevance | path

Searched +full:python +full:- +full:version (Results 1 – 3 of 3) sorted by relevance

/hal_stm32-2.7.6/.github/workflows/
Dtest.yml7 runs-on: ubuntu-latest
9 fail-fast: false
11 python-version: [3.6, 3.7, 3.8]
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-2.7.6/scripts/
Dupdate_stm32_package.py1 #!/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 "-f",
[all …]
Dserie_update.py1 #!/usr/bin/python
3 SPDX-License-Identifier: Apache-2.0
56 return previous zephyr cube version.
124 ("git", "ls-remote", "--heads", "origin", "master"),
126 ).decode("utf-8")
137 os_cmd(("git", "clean", "-fdx"), cwd=self.stm32cube_serie_path)
141 ("git", "reset", "--hard", branch),
153 # get the latest version of cube,
157 ("git", "tag", "-l"),
160 self.version_tag = [x.decode("utf-8") for x in self.version_tag]
[all …]