Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2.0"
__version__ = "0.3.0"


default_app_config = "django_neomodel.apps.NeomodelConfig"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ classifiers = [
"Topic :: Database",
]
dependencies = [
"neomodel~=5.3.0",
"neomodel==5.4.0",
'django>=4.2.8'
]
version='0.2.0'
version='0.3.0'

[project.urls]
repository = "http://github.com/robinedwards/django-neomodel"
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
neomodel~=5.3.0
django~=4.2.8
django~=4.2.8
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from setuptools import setup

setup(
name="django-neomodel",
version="0.3.0",
description="Custom Django Neomodel to support 5.22.0",
url="https://github.com/myplace/django-neomodel",
author="MyPlace",
author_email="",
license="BSD 2-clause",
packages=["django_neomodel"],
install_requires=["neomodel==5.4.0", "django~=4.2.8"],
)
2 changes: 1 addition & 1 deletion tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:


neo4j:
image: neo4j:5.4-enterprise
image: neo4j:5.22.0
ports:
- "7474:7474"
- "7687:7687"
Expand Down