Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/rc/0.2.0' into EvdH0/master
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Conjeaud committed May 22, 2024
2 parents 2b47184 + 2cfdcd4 commit 50e24f5
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Integration tests

on:
push:
branches: [ "master", "rc/**" ]
branches: [ "rc/**" ]
pull_request:
branches: [ "master", "rc/**" ]

Expand All @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7"]
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
neo4j-version: ["community", "4.4-community"]

steps:
Expand Down
3 changes: 2 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Version 0.1.2 2024-05
Version 0.2.0 2024-05
* Bump neomodel to 5.3.0
* Bump Django to 4.2.8 LTS

Version 0.1.1 2023-08
* Bump neomodel to 5.1.0 - full support of Neo4j version 5.x (and 4.4 LTS)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Delete all nodes in your database, warning there is no confirmation!

## Requirements

- Python 3.7+
- Python 3.8+
- neo4j 5.x, 4.4 (LTS)

## Docker Example
Expand Down
2 changes: 1 addition & 1 deletion django_neomodel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
__email__ = "[email protected]"
__license__ = "MIT"
__package__ = "django_neomodel"
__version__ = "0.1.2"
__version__ = "0.2.0"


default_app_config = "django_neomodel.apps.NeomodelConfig"
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors = [{name = "Robin Edwards", email = "[email protected]"}]
maintainers = [{name = "Marius Conjeaud", email = "[email protected]"}]
description = "Use Neo4j with Django!"
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
keywords = ["graph", "neo4j", "django", "plugin", "neomodel"]
license = { text = "MIT" }
classifiers = [
Expand All @@ -28,9 +28,9 @@ classifiers = [
]
dependencies = [
"neomodel~=5.3.0",
'django>=2.2'
'django>=4.2.8'
]
version='0.1.2'
version='0.2.0'

[project.urls]
repository = "http://github.com/robinedwards/django-neomodel"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
neomodel~=5.3.0
django>=2.2
django~=4.2.8
Binary file modified test.db
Binary file not shown.

0 comments on commit 50e24f5

Please sign in to comment.