Skip to content

Commit f6e00e0

Browse files
authored
Merge pull request #34 from neo4j/fix/python-3.7-dev-env
Enable Python 3.7 dev env
2 parents 6a26f85 + 05266be commit f6e00e0

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,13 @@ repos:
2525
- id: fmt
2626
- id: cargo-check
2727
- id: clippy
28-
- repo: https://github.com/pycqa/isort
29-
rev: 5.12.0
28+
- repo: local
3029
hooks:
3130
- id: isort
31+
name: isort
32+
entry: isort
33+
types_or: [ python, pyi ]
34+
language: system
3235
- repo: https://github.com/astral-sh/ruff-pre-commit
3336
rev: v0.6.4
3437
hooks:

requirements-dev.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
.[numpy,pandas,pyarrow]
22

33
# for local development
4-
pre-commit
4+
pre-commit>=2.21.0 # TODO: 6.0 - bump when support for Python 3.7 is dropped
5+
isort>=5.11.5 # TODO: 6.0 - bump when support for Python 3.7 is dropped
56

67
# for unit tests
7-
tox
8-
pytest
9-
pytest-benchmark
8+
tox>=4.8.0 # TODO: 6.0 - bump when support for Python 3.7 is dropped
9+
pytest>=7.4.4 # TODO: 6.0 - bump when support for Python 3.7 is dropped
10+
pytest-benchmark>=4.0.0
1011

1112
# for Python driver's TestKit backend
12-
freezegun
13+
freezegun>=1.5.1
1314

1415
# for packaging
15-
maturin
16+
maturin>=1.7.8

0 commit comments

Comments
 (0)