Skip to content

Commit 4c67a90

Browse files
authored
Bump version to 5.27 + bump dependencies (#1126)
1 parent 2858a5a commit 4c67a90

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ See also https://github.com/neo4j/neo4j-python-driver/wiki for a full changelog.
66
- No breaking or major changes.
77

88

9+
## Version 5.27
10+
- No breaking or major changes.
11+
12+
913
## Version 5.26
1014
- Python 3.13 support added.
1115
- Deprecated setting attributes on `Neo4jError` like `message` and `code`.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ Forum = "https://community.neo4j.com/c/drivers-stacks/python/"
5555
Discord = "https://discord.com/invite/neo4j"
5656

5757
[project.optional-dependencies]
58-
numpy = ["numpy >= 1.7.0, < 2.0.0"]
58+
numpy = ["numpy >= 1.7.0, < 3.0.0"]
5959
pandas = [
6060
"pandas >= 1.1.0, < 3.0.0",
61-
"numpy >= 1.7.0, < 2.0.0",
61+
"numpy >= 1.7.0, < 3.0.0",
6262
]
6363
pyarrow = ["pyarrow >= 1.0.0"]
6464

@@ -67,7 +67,7 @@ pyarrow = ["pyarrow >= 1.0.0"]
6767
requires = [
6868
"setuptools == 68.0.0", # dropped support for Python 3.7 in 68.1.0
6969
# TODO: 6.0 - can be removed once `setup.py` is simplified
70-
"tomlkit == 0.11.8",
70+
"tomlkit == 0.12.5", # dropped support (at least CI testing) for Python 3.7 in 0.13.0
7171
]
7272
build-backend = "setuptools.build_meta"
7373

src/neo4j/_meta.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
# Can be automatically overridden in builds
3535
package = "neo4j"
36-
version = "5.26.dev0"
36+
version = "5.27.dev0"
3737
deprecated_package = False
3838

3939

0 commit comments

Comments
 (0)