Skip to content

Commit d10d2cd

Browse files
authored
Bump dependencies (#1265)
1 parent 3908319 commit d10d2cd

File tree

7 files changed

+7
-14
lines changed

7 files changed

+7
-14
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v5.0.0
5+
rev: cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b # v5.0.0
66
hooks:
77
- id: check-case-conflict
88
- id: check-docstring-first
@@ -27,11 +27,11 @@ repos:
2727
types_or: [ python, pyi ]
2828
language: system
2929
- repo: https://github.com/sphinx-contrib/sphinx-lint
30-
rev: ff671d6a030a3141634793e6d1e8909ab6091830
30+
rev: ff671d6a030a3141634793e6d1e8909ab6091830 # v1.0.0
3131
hooks:
3232
- id: sphinx-lint
3333
- repo: https://github.com/astral-sh/ruff-pre-commit
34-
rev: v0.11.12
34+
rev: aad66557af3b56ba6d4d69cd1b6cba87cef50cbb # v0.14.3
3535
hooks:
3636
- id: ruff-format
3737
- id: ruff-check

bin/make-unasync

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import tokenize as std_tokenize
2525
from pathlib import Path
2626

2727
import isort
28-
import isort.files
2928
import unasync
3029

3130

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pandas = [
5959
"pandas >= 1.1.0, < 3.0.0",
6060
"numpy >= 1.21.2, < 3.0.0",
6161
]
62-
pyarrow = ["pyarrow >= 6.0.0, < 22.0.0"]
62+
pyarrow = ["pyarrow >= 6.0.0, < 23.0.0"]
6363

6464

6565
[build-system]
@@ -151,7 +151,7 @@ dep-project-dependencies = [
151151
"pytz",
152152
"numpy >= 1.7.0, < 3.0.0",
153153
"pandas >= 1.1.0, < 3.0.0",
154-
"pyarrow >= 6.0.0, < 22.0.0",
154+
"pyarrow >= 6.0.0, < 23.0.0",
155155
]
156156

157157
[tool.setuptools.dynamic]
@@ -286,9 +286,6 @@ extend-ignore = [
286286
# needs fixing in ruff to work with typing.Protocol
287287
# https://github.com/astral-sh/ruff/issues/13307
288288
"FURB180",
289-
290-
# rule is deprected and suggests not recommended practice
291-
"UP038",
292289
]
293290
select = [
294291
# ruff

testkitbackend/_async/requests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
from freezegun import freeze_time
2828

2929
import neo4j
30-
import neo4j.api
3130
import neo4j.auth_management
3231
from neo4j._async_compat.util import AsyncUtil
3332
from neo4j._routing import RoutingTable

testkitbackend/_sync/requests.py

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/integration/test_readme.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ def test_readme_contains_example():
7474
test_path = Path(__file__)
7575
readme_path = test_path.parents[2] / "README.rst"
7676

77-
with test_path.open("r") as fd:
77+
with test_path.open("r", encoding="utf-8") as fd:
7878
test_content = fd.read()
79-
with readme_path.open("r") as fd:
79+
with readme_path.open("r", encoding="utf-8") as fd:
8080
readme_content = fd.read()
8181

8282
stripped_test_content = ""

tests/unit/common/test_api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import pytest
2222

2323
import neo4j._api
24-
import neo4j.api
2524
from neo4j.addressing import Address
2625
from neo4j.exceptions import ConfigurationError
2726

0 commit comments

Comments
 (0)