Skip to content

Commit

Permalink
Update to python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Dec 16, 2023
1 parent 2e6dcfc commit c968ac2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ runs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.12'
- name: Cache Python environment
uses: actions/cache@v3
id: cache-python
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
black==23.7.0
pylint==3.0.3
toltecmk==0.3.0
toltecmk==0.2.1
mypy-extensions==1.0.0
websocket-client==1.6.1
typing-extensions==4.7.1
Expand Down
2 changes: 1 addition & 1 deletion scripts/package_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
else:
build_matrix[arch] = None

if not builder.make(recipe_bundle, build_matrix, False):
if not builder.make(recipe_bundle, build_matrix):
sys.exit(1)

repo.make_index()
2 changes: 1 addition & 1 deletion scripts/repo_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
recipe_bundle[arch].packages[pkg_name]
for pkg_name in recipe_bundle[arch].packages
]
builder.make(recipe_bundle, build_matrix, False)
builder.make(recipe_bundle, build_matrix)

make_index(paths.REPO_DIR)

Expand Down

0 comments on commit c968ac2

Please sign in to comment.