Skip to content

Commit

Permalink
Bump neomodel version
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Conjeaud committed May 21, 2024
1 parent 1cd1bcc commit 90f5ee9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.10", "3.9", "3.8", "3.7"]
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7"]
neo4j-version: ["community", "4.4-community"]

steps:
Expand Down
3 changes: 3 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 0.1.2 2024-05
* Bump neomodel to 5.3.0

Version 0.1.1 2023-08
* Bump neomodel to 5.1.0 - full support of Neo4j version 5.x (and 4.4 LTS)
* Support higher versions of Django (> 2.2)
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include README.rst
include README.md
include AUTHORS.txt
include Changelog
include LICENSE
2 changes: 1 addition & 1 deletion django_neomodel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
__email__ = "[email protected]"
__license__ = "MIT"
__package__ = "django_neomodel"
__version__ = "0.1.1"
__version__ = "0.1.2"


default_app_config = "django_neomodel.apps.NeomodelConfig"
Expand Down
8 changes: 3 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ authors = [
{name = "Robin Edwards", email = "[email protected]"},
]
maintainers = [
{name = "Athanasios Anastasiou", email = "[email protected]"},
{name = "Cristina Escalante"},
{name = "Marius Conjeaud", email = "[email protected]"},
]
description = "Use Neo4j with Django!"
readme = "README.rst"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["graph", "neo4j", "django", "plugin", "neomodel"]
license = {text = "MIT"}
Expand All @@ -33,10 +31,10 @@ classifiers = [
"Topic :: Database",
]
dependencies = [
"neomodel~=5.1.0",
"neomodel~=5.3.0",
'django>=2.2'
]
version='0.1.1'
version='0.1.2'

[project.urls]
repository = "http://github.com/robinedwards/django-neomodel"
Expand Down
3 changes: 3 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pytest>=7.1
pytest-django>=3.10.0
pytest-cov>=4.0
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
neomodel~=5.3.0
django>=2.2

0 comments on commit 90f5ee9

Please sign in to comment.