Skip to content

Commit c968ac2

Browse files
committed
Update to python 3.12
1 parent 2e6dcfc commit c968ac2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ runs:
7070
- name: Setup Python
7171
uses: actions/setup-python@v4
7272
with:
73-
python-version: '3.10'
73+
python-version: '3.12'
7474
- name: Cache Python environment
7575
uses: actions/cache@v3
7676
id: cache-python

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
black==23.7.0
22
pylint==3.0.3
3-
toltecmk==0.3.0
3+
toltecmk==0.2.1
44
mypy-extensions==1.0.0
55
websocket-client==1.6.1
66
typing-extensions==4.7.1

scripts/package_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
else:
6161
build_matrix[arch] = None
6262

63-
if not builder.make(recipe_bundle, build_matrix, False):
63+
if not builder.make(recipe_bundle, build_matrix):
6464
sys.exit(1)
6565

6666
repo.make_index()

scripts/repo_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
recipe_bundle[arch].packages[pkg_name]
8282
for pkg_name in recipe_bundle[arch].packages
8383
]
84-
builder.make(recipe_bundle, build_matrix, False)
84+
builder.make(recipe_bundle, build_matrix)
8585

8686
make_index(paths.REPO_DIR)
8787

0 commit comments

Comments
 (0)