Skip to content

Commit 77fb42c

Browse files
committed
Support Python 3.13
1 parent 5f49764 commit 77fb42c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

requirements/base/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
multimethod >= 1.0, < 2.0
22
neo4j >= 4.4.12, < 6.0
3-
numpy < 2.1
3+
numpy < 2.3
44
pandas >= 1.0, < 3.0
55
pyarrow >= 15.0.2, < 19.0
66
textdistance >= 4.0, < 5.0

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"Programming Language :: Python :: 3.10",
3131
"Programming Language :: Python :: 3.11",
3232
"Programming Language :: Python :: 3.12",
33+
"Programming Language :: Python :: 3.13",
3334
"Topic :: Database",
3435
"Topic :: Scientific/Engineering",
3536
"Topic :: Software Development",

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ envlist =
77
py311-pandas1-pyarrow{15,16, 17, 18}-main-{standard,encrypted},
88
# Vary Pandas 2.x + PyArrow
99
py{39,310,311}-pandas2-pyarrow{17,18}-main-{standard,encrypted},
10-
py312-pandas2-pyarrow{18}-main-{standard,encrypted},
10+
# Vary Python version
11+
py3{12,13}-pandas2-pyarrow{18}-main-{standard,encrypted},
1112

1213
# PR envs
1314
py{39,310}-neo4j{4,5}-pullrequest-{standard,encrypted},
14-
py{311,312}-pullrequest-{standard,encrypted},
15+
py{311,312,313}-pullrequest-{standard,encrypted},
1516

1617
# Aura
1718
py311-main-aura,
@@ -47,7 +48,7 @@ deps =
4748
pandas1: pandas >= 1.0, < 2.0
4849
pandas1: numpy == 1.24.3
4950
pandas2: pandas >= 2.2.2, < 3.0
50-
pandas2: numpy == 2.0.2
51+
pandas2: numpy == 2.2.2
5152
pyarrow15: pyarrow >= 15.0, < 16.0
5253
pyarrow16: pyarrow >= 16.0, < 17.0
5354
pyarrow17: pyarrow >= 17.0, < 18.0

0 commit comments

Comments
 (0)