Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: x # any version
python-version: 3.8 # PYTHON VERSION MARKER (update all locations that use this marker simultaneously)
check-latest: true
- name: Install tox
run: python -m pip install tox
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ wrap-summaries = 0

[tool.ruff]
line-length = 100
target-version = "py38" # always generate Python 3.8 compatible code
target-version = "py38" # PYTHON VERSION MARKER (update all locations that use this marker simultaneously)

[tool.ruff.lint]
fixable = ["ALL"]
Expand Down
Loading