Skip to content

Commit f32682e

Browse files
committed
Update ruff and set it to fix imports
Signed-off-by: Albert Callarisa <[email protected]>
1 parent f959cd5 commit f32682e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pyOpenSSL>=23.2.0
1313
# needed for type checking
1414
Flask>=1.1
1515
# needed for auto fix
16-
ruff===0.2.2
16+
ruff===0.14.1
1717
# needed for dapr-ext-workflow
1818
durabletask-dapr >= 0.2.0a7
1919
# needed for .env file loading in examples

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ exclude =
6464
.tox,
6565
dapr/proto,
6666
examples
67-
ignore = F821, E501, W503, E203
67+
ignore = F821, E501, W503, E203, E704,E701
6868
max-line-length = 100

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ commands =
3535
[testenv:ruff]
3636
basepython = python3
3737
usedevelop = False
38-
deps = ruff==0.2.2
3938
commands =
39+
ruff check --select I --fix --line-length 100
4040
ruff format
4141

4242
[testenv:examples]

0 commit comments

Comments
 (0)