Skip to content

Commit

Permalink
Add more info about development process (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
d3QUone authored Aug 7, 2023
1 parent 24a832a commit 594066c
Show file tree
Hide file tree
Showing 3 changed files with 680 additions and 579 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
registries: "*"
schedule:
interval: "weekly"
# Disable just version updates, keep only security updates.
open-pull-requests-limit: 0
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
Python asynchronous and lightweight SQS client. The goal of this library is to provide fast and optimal access to SQS
for Python projects, e.g. when you need a high-load queue consumer or high-load queue producer written in Python.

Supports Python versions 3.8, 3.9, 3.10, 3.11.

----

## Why aiosqs?
Expand Down Expand Up @@ -80,3 +82,13 @@ Close the client at the end:
```python
await client.close()
```


## Development

Set up env and install dependencies:
```shell
python3 -m pip install poetry==1.5.0
poetry env use 3.11
poetry install
```
Loading

0 comments on commit 594066c

Please sign in to comment.