Skip to content

Commit 1a92ab5

Browse files
committed
Test against PyArrow 1.19
1 parent fd9942d commit 1a92ab5

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
## Breaking changes
55

6+
* Drop support for PyArrow 15
67

78
## New features
89

@@ -17,6 +18,7 @@
1718
## Improvements
1819

1920
* Support Python 3.13
21+
* Support PyArrow 19.0
2022
* Display progress bar for remote projection and open-ended tasks.
2123
* Improve progress bar by showing the description of the currently running task.
2224
* Allow passing the optional graph filter also as type `str` to `gds.graph.list()` instead of only `Graph`.

requirements/base/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ multimethod >= 1.0, < 2.0
22
neo4j >= 4.4.12, < 6.0
33
numpy < 2.3
44
pandas >= 1.0, < 3.0
5-
pyarrow >= 15.0.2, < 20.0
5+
pyarrow >= 16.0, < 20.0
66
textdistance >= 4.0, < 5.0
77
tqdm >= 4.0, < 5.0
88
typing-extensions >= 4.0, < 5.0

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ envlist =
33
# Vary Neo4j & Pandas versions
44
py{39, 310}-neo4j{4,5}-pandas{1,2}-main-{standard,encrypted},
55
# Vary Pandas 1.x + PyArrow
6-
py{39,310}-pandas1-pyarrow{15,16, 17, 18}-main-{standard,encrypted},
7-
py311-pandas1-pyarrow{15,16, 17, 18}-main-{standard,encrypted},
6+
py{39,310}-pandas1-pyarrow{16, 17, 18, 19}-main-{standard,encrypted},
7+
py311-pandas1-pyarrow{15,16, 17, 18, 19}-main-{standard,encrypted},
88
# Vary Pandas 2.x + PyArrow
9-
py{39,310,311}-pandas2-pyarrow{17,18}-main-{standard,encrypted},
9+
py{39,310,311}-pandas2-pyarrow{18, 19}-main-{standard,encrypted},
1010
# Vary Python version
11-
py3{12,13}-pandas2-pyarrow{18}-main-{standard,encrypted},
11+
py3{12,13}-pandas2-pyarrow{19}-main-{standard,encrypted},
1212

1313
# PR envs
1414
py{39,310}-neo4j{4,5}-pullrequest-{standard,encrypted},
@@ -49,10 +49,10 @@ deps =
4949
pandas1: numpy == 1.24.3
5050
pandas2: pandas >= 2.2.2, < 3.0
5151
pandas2: numpy >= 2.0
52-
pyarrow15: pyarrow >= 15.0, < 16.0
5352
pyarrow16: pyarrow >= 16.0, < 17.0
5453
pyarrow17: pyarrow >= 17.0, < 18.0
5554
pyarrow18: pyarrow >= 18.0, < 19.0
55+
pyarrow19: pyarrow >= 19.0, < 20.0
5656
networkx2: networkx >= 2.0, < 3.0
5757
networkx3: networkx >= 3.0, < 4.0
5858
commands =

0 commit comments

Comments
 (0)