Skip to content

Commit

Permalink
Bump version to 5.27 + bump dependencies (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdedude authored Nov 27, 2024
1 parent 2858a5a commit 4c67a90
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ See also https://github.com/neo4j/neo4j-python-driver/wiki for a full changelog.
- No breaking or major changes.


## Version 5.27
- No breaking or major changes.


## Version 5.26
- Python 3.13 support added.
- Deprecated setting attributes on `Neo4jError` like `message` and `code`.
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ Forum = "https://community.neo4j.com/c/drivers-stacks/python/"
Discord = "https://discord.com/invite/neo4j"

[project.optional-dependencies]
numpy = ["numpy >= 1.7.0, < 2.0.0"]
numpy = ["numpy >= 1.7.0, < 3.0.0"]
pandas = [
"pandas >= 1.1.0, < 3.0.0",
"numpy >= 1.7.0, < 2.0.0",
"numpy >= 1.7.0, < 3.0.0",
]
pyarrow = ["pyarrow >= 1.0.0"]

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

Expand Down
2 changes: 1 addition & 1 deletion src/neo4j/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

# Can be automatically overridden in builds
package = "neo4j"
version = "5.26.dev0"
version = "5.27.dev0"
deprecated_package = False


Expand Down

0 comments on commit 4c67a90

Please sign in to comment.