We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f49764 commit 77fb42cCopy full SHA for 77fb42c
requirements/base/base.txt
@@ -1,6 +1,6 @@
1
multimethod >= 1.0, < 2.0
2
neo4j >= 4.4.12, < 6.0
3
-numpy < 2.1
+numpy < 2.3
4
pandas >= 1.0, < 3.0
5
pyarrow >= 15.0.2, < 19.0
6
textdistance >= 4.0, < 5.0
setup.py
@@ -30,6 +30,7 @@
30
"Programming Language :: Python :: 3.10",
31
"Programming Language :: Python :: 3.11",
32
"Programming Language :: Python :: 3.12",
33
+ "Programming Language :: Python :: 3.13",
34
"Topic :: Database",
35
"Topic :: Scientific/Engineering",
36
"Topic :: Software Development",
tox.ini
@@ -7,11 +7,12 @@ envlist =
7
py311-pandas1-pyarrow{15,16, 17, 18}-main-{standard,encrypted},
8
# Vary Pandas 2.x + PyArrow
9
py{39,310,311}-pandas2-pyarrow{17,18}-main-{standard,encrypted},
10
- py312-pandas2-pyarrow{18}-main-{standard,encrypted},
+ # Vary Python version
11
+ py3{12,13}-pandas2-pyarrow{18}-main-{standard,encrypted},
12
13
# PR envs
14
py{39,310}-neo4j{4,5}-pullrequest-{standard,encrypted},
- py{311,312}-pullrequest-{standard,encrypted},
15
+ py{311,312,313}-pullrequest-{standard,encrypted},
16
17
# Aura
18
py311-main-aura,
@@ -47,7 +48,7 @@ deps =
47
48
pandas1: pandas >= 1.0, < 2.0
49
pandas1: numpy == 1.24.3
50
pandas2: pandas >= 2.2.2, < 3.0
- pandas2: numpy == 2.0.2
51
+ pandas2: numpy == 2.2.2
52
pyarrow15: pyarrow >= 15.0, < 16.0
53
pyarrow16: pyarrow >= 16.0, < 17.0
54
pyarrow17: pyarrow >= 17.0, < 18.0
0 commit comments