Skip to content

Commit 4b94c97

Browse files
authored
Merge pull request #550 from ansys/fix/style_checks
Fix code style action
2 parents ff7e3af + 391a9b6 commit 4b94c97

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci_cd.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ jobs:
3232
- name: Set up Python
3333
uses: actions/setup-python@v5
3434
with:
35-
python-version: ${{ env.MAIN_PYTHON_VERSION }}
35+
# TODO: switch back to using ${{ env.MAIN_PYTHON_VERSION }}
36+
# once https://github.com/pylint-dev/pylint/issues/10000#issuecomment-2519899671
37+
# is resolved.
38+
python-version: "3.12"
3639
- name: Install dependencies
3740
run: |
3841
python -m pip install --upgrade pip tox

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ commands =
6464
description = Checks project code style
6565
skip_install = true
6666
basepython =
67-
python3.13
67+
python3.12 # TODO: move to 3.13 once https://github.com/pylint-dev/pylint/issues/10000#issuecomment-2519899671 is fixed
6868
allowlist_externals =
6969
poetry
7070
commands =

0 commit comments

Comments
 (0)