Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
s3rius committed Jun 11, 2023
2 parents 78a2611 + 92a93a1 commit 14611af
Show file tree
Hide file tree
Showing 5 changed files with 332 additions and 465 deletions.
18 changes: 9 additions & 9 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,6 @@ ignore =
; Do not perform function calls in argument defaults.
B008,

; all init files
__init__.py:
; ignore not used imports
F401,
; ignore import with wildcard
F403,
; Found wrong metadata variable
WPS410,

per-file-ignores =
; all tests
test_*.py,tests.py,tests_*.py,*/tests/*:
Expand All @@ -112,6 +103,15 @@ per-file-ignores =
; Found complex default value
WPS404,

; all init files
__init__.py:
; ignore not used imports
F401,
; ignore import with wildcard
F403,
; Found wrong metadata variable
WPS410,

exclude =
./.git,
./venv,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
pytest:
strategy:
matrix:
py_version: ["3.7", "3.8", "3.9", "3.10"]
py_version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Taskiq-nats is a plugin for taskiq that adds NATS broker.
To use this project you must have installed core taskiq library:

```bash
pip install taskiq taskiq-redis
pip install taskiq taskiq-nats
```

## Usage
Expand Down
Loading

0 comments on commit 14611af

Please sign in to comment.