-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from neo4j-contrib/rc/0.2.0
Version 0.2.0 2024-05 * Bump neomodel to 5.3.0 * Bump Django to 4.2.8 LTS
- Loading branch information
Showing
12 changed files
with
94 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,15 +8,15 @@ | |
from django.core.exceptions import ValidationError | ||
|
||
from neomodel import RequiredProperty, DeflateError, StructuredNode, UniqueIdProperty | ||
from neomodel.core import NodeMeta | ||
from neomodel.match import NodeSet | ||
from neomodel.sync_.core import NodeMeta | ||
from neomodel.sync_.match import NodeSet | ||
|
||
|
||
__author__ = "Robin Edwards" | ||
__email__ = "[email protected]" | ||
__license__ = "MIT" | ||
__package__ = "django_neomodel" | ||
__version__ = "0.1.1" | ||
__version__ = "0.2.0" | ||
|
||
|
||
default_app_config = "django_neomodel.apps.NeomodelConfig" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,19 +9,13 @@ where = ["./"] | |
|
||
[project] | ||
name = "django_neomodel" | ||
authors = [ | ||
{name = "Robin Edwards", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Athanasios Anastasiou", email = "[email protected]"}, | ||
{name = "Cristina Escalante"}, | ||
{name = "Marius Conjeaud", email = "[email protected]"}, | ||
] | ||
authors = [{name = "Robin Edwards", email = "[email protected]"}] | ||
maintainers = [{name = "Marius Conjeaud", email = "[email protected]"}] | ||
description = "Use Neo4j with Django!" | ||
readme = "README.rst" | ||
requires-python = ">=3.7" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
keywords = ["graph", "neo4j", "django", "plugin", "neomodel"] | ||
license = {text = "MIT"} | ||
license = { text = "MIT" } | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
'Intended Audience :: Developers', | ||
|
@@ -33,18 +27,18 @@ classifiers = [ | |
"Topic :: Database", | ||
] | ||
dependencies = [ | ||
"neomodel~=5.1.0", | ||
'django>=2.2' | ||
"neomodel~=5.3.0", | ||
'django>=4.2.8' | ||
] | ||
version='0.1.1' | ||
version='0.2.0' | ||
|
||
[project.urls] | ||
repository = "http://github.com/robinedwards/django-neomodel" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pytest>=7.1", | ||
"pytest-django>=3.10.0", | ||
"pytest-django>=4.5.2", | ||
"pytest-cov>=4.0", | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pytest>=7.1 | ||
pytest-django>=4.5.2 | ||
pytest-cov>=4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
neomodel~=5.3.0 | ||
django~=4.2.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM python:3 | ||
WORKDIR /usr/src/app | ||
RUN pip install -e '.[dev]' | ||
COPY .. . | ||
RUN pip install -e '.[dev]' | ||
RUN chmod +x ./tests/docker-entrypoint.sh | ||
CMD ["./tests/docker-entrypoint.sh" ] |
Oops, something went wrong.