Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/psf/black
rev: 24.4.2
rev: 26.1.0
hooks:
- id: black

Expand All @@ -29,7 +29,7 @@ repos:
args: [ --profile, black ]

- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
rev: 7.3.0
hooks:
- id: flake8

Expand Down
2 changes: 1 addition & 1 deletion arangoasync/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.5"
__version__ = "1.0.6"
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ classifiers = [

dependencies = [
"packaging>=23.1",
"setuptools>=42",
"aiohttp>=3.9",
"multidict>=6.0",
"pyjwt>=2.8.0",
Expand All @@ -50,8 +49,8 @@ version = { attr = "arangoasync.version.__version__" }
[project.optional-dependencies]
dev = [
"aiofiles>=24.1.0",
"black>=24.2",
"flake8>=7.0",
"black==26.1.0",
"flake8==7.3.0",
"isort>=5.10",
"mypy>=1.10",
"pre-commit>=3.7",
Expand Down
4 changes: 1 addition & 3 deletions tests/test_cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,7 @@ async def test_cursor_write_query(db, doc_col, docs):
SORT d.val
UPDATE {{_key: d._key, _val: @val }} IN {col}
RETURN NEW
""".format(
col=doc_col.name
),
""".format(col=doc_col.name),
bind_vars={"first": 1, "second": 2, "val": 42},
count=True,
batch_size=1,
Expand Down
Loading