Skip to content

Commit

Permalink
Merge pull request #550 from ansys/fix/style_checks
Browse files Browse the repository at this point in the history
Fix code style action
  • Loading branch information
greschd authored Dec 10, 2024
2 parents ff7e3af + 391a9b6 commit 4b94c97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
# TODO: switch back to using ${{ env.MAIN_PYTHON_VERSION }}
# once https://github.com/pylint-dev/pylint/issues/10000#issuecomment-2519899671
# is resolved.
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip tox
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ commands =
description = Checks project code style
skip_install = true
basepython =
python3.13
python3.12 # TODO: move to 3.13 once https://github.com/pylint-dev/pylint/issues/10000#issuecomment-2519899671 is fixed
allowlist_externals =
poetry
commands =
Expand Down

0 comments on commit 4b94c97

Please sign in to comment.