Skip to content

Commit a6dbc52

Browse files
committed
Fix dev dependencies
The driver has support for pandas >=1.1, <2, but as optional dependencies. If not specified (`pip install neo4j[pandas]`), but installed directly (`pip install pandas`), the version bounds of the driver will not be respected.
1 parent 6a9ab5b commit a6dbc52

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

requirements-dev.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# the driver itself
2-
-e .
2+
-e .[pandas,numpy]
33

44
# auto-generate sync driver from async code
55
unasync>=0.5.0
@@ -18,8 +18,6 @@ tomlkit~=0.11.6
1818
# needed for running tests
1919
coverage[toml]>=5.5
2020
mock>=4.0.3
21-
numpy>=1.7.0
22-
pandas>=1.0.0
2321
pyarrow>=1.0.0
2422
pytest>=6.2.5
2523
pytest-asyncio>=0.16.0

0 commit comments

Comments
 (0)