Bump Ruff to 0.1.13

This commit is contained in:
Adam Turner 2024-01-13 20:49:45 +00:00
parent 767e39df8c
commit 82d78c19bf
3 changed files with 3 additions and 2 deletions

View File

@ -29,7 +29,7 @@ jobs:
run: python -m pip install --upgrade pip run: python -m pip install --upgrade pip
- name: Install Ruff - name: Install Ruff
run: python -m pip install "ruff==0.1.11" run: python -m pip install "ruff==0.1.13"
- name: Lint with Ruff - name: Lint with Ruff
run: ruff . --output-format github run: ruff . --output-format github

View File

@ -1,5 +1,6 @@
target-version = "py39" # Pin Ruff to Python 3.9 target-version = "py39" # Pin Ruff to Python 3.9
line-length = 95 line-length = 95
required-version = "0.1.13"
show-source = true show-source = true
[lint] [lint]

View File

@ -83,7 +83,7 @@ docs = [
lint = [ lint = [
"flake8>=3.5.0", "flake8>=3.5.0",
"flake8-simplify", "flake8-simplify",
"ruff==0.1.11", "ruff==0.1.13",
"mypy==1.8.0", "mypy==1.8.0",
"sphinx-lint", "sphinx-lint",
"docutils-stubs", "docutils-stubs",