Skip to content

Commit ec9b400

Browse files
committed
Merge branch 'release/0.7.0'
2 parents 3f8af45 + ebc1afe commit ec9b400

File tree

14 files changed

+352
-477
lines changed

14 files changed

+352
-477
lines changed

.flake8

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,6 @@ ignore =
9595
; Found too many public instance attributes
9696
WPS230,
9797

98-
; all init files
99-
__init__.py:
100-
; ignore not used imports
101-
F401,
102-
; ignore import with wildcard
103-
F403,
104-
; Found wrong metadata variable
105-
WPS410,
106-
; Found commented out cod
107-
E800,
108-
10998
per-file-ignores =
11099
; all tests
111100
test_*.py,tests.py,tests_*.py,*/tests/*:
@@ -120,6 +109,21 @@ per-file-ignores =
120109
; Found complex default value
121110
WPS404,
122111

112+
; all init files
113+
__init__.py:
114+
; ignore not used imports
115+
F401,
116+
; ignore import with wildcard
117+
F403,
118+
; Found wrong metadata variable
119+
WPS410,
120+
; Found commented out code
121+
E800,
122+
123+
taskiq/serialization.py:
124+
; Found commented out code
125+
E800,
126+
123127
exclude =
124128
./.git,
125129
./venv,

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
contents: write
3434
strategy:
3535
matrix:
36-
py_version: ["3.7", "3.8", "3.9", "3.10"]
36+
py_version: ["3.8", "3.9", "3.10", "3.11"]
3737
os: [ubuntu-latest, windows-latest]
3838
runs-on: "${{ matrix.os }}"
3939
steps:

0 commit comments

Comments
 (0)