Skip to content

Commit 6e7c85b

Browse files
committed
v1.6.0 vermils Package Migration
1 parent f8fb965 commit 6e7c85b

File tree

17 files changed

+860
-2117
lines changed

17 files changed

+860
-2117
lines changed

.flake8

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[flake8]
2+
max-line-length = 88
3+
extend-ignore = W291 E704 E266

.github/workflows/ci-workflow.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
python-version: ["3.10", "3.11.0-rc.2"]
16+
python-version: ["3.10", "3.11"]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818

1919
steps:
@@ -26,7 +26,6 @@ jobs:
2626
run: |
2727
python -m pip install --upgrade pip twine
2828
pip install poetry
29-
poetry config experimental.new-installer false
3029
poetry install
3130
poetry install -E all
3231
- name: Run test suite

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Unlike `TinyDB` which has a minimal core, `Async-TinyDB` is designed to have max
5151
import asynctinydb
5252
```
5353

54-
## Using
54+
## Usage
5555

56-
See the [original `TinyDB` documents](https://tinydb.readthedocs.org). Insert an `await` in front of async methods.
56+
Read the [original `TinyDB` documents](https://tinydb.readthedocs.org). Insert an `await` in front of async methods.
5757

5858
Notice that some codes are still blocking, for example, when calling `len()` on `TinyDB` or `Table` Objects.
5959

0 commit comments

Comments
 (0)