Skip to content

Commit 14611af

Browse files
committed
Merge branch 'release/0.3.0'
2 parents 78a2611 + 92a93a1 commit 14611af

File tree

5 files changed

+332
-465
lines changed

5 files changed

+332
-465
lines changed

.flake8

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,6 @@ ignore =
8989
; Do not perform function calls in argument defaults.
9090
B008,
9191

92-
; all init files
93-
__init__.py:
94-
; ignore not used imports
95-
F401,
96-
; ignore import with wildcard
97-
F403,
98-
; Found wrong metadata variable
99-
WPS410,
100-
10192
per-file-ignores =
10293
; all tests
10394
test_*.py,tests.py,tests_*.py,*/tests/*:
@@ -112,6 +103,15 @@ per-file-ignores =
112103
; Found complex default value
113104
WPS404,
114105

106+
; all init files
107+
__init__.py:
108+
; ignore not used imports
109+
F401,
110+
; ignore import with wildcard
111+
F403,
112+
; Found wrong metadata variable
113+
WPS410,
114+
115115
exclude =
116116
./.git,
117117
./venv,

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
pytest:
4949
strategy:
5050
matrix:
51-
py_version: ["3.7", "3.8", "3.9", "3.10"]
51+
py_version: ["3.8", "3.9", "3.10", "3.11"]
5252
runs-on: "ubuntu-latest"
5353
steps:
5454
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Taskiq-nats is a plugin for taskiq that adds NATS broker.
77
To use this project you must have installed core taskiq library:
88

99
```bash
10-
pip install taskiq taskiq-redis
10+
pip install taskiq taskiq-nats
1111
```
1212

1313
## Usage

0 commit comments

Comments
 (0)