From f5e8f48a15493b1651e0e1b2deb1981600785e58 Mon Sep 17 00:00:00 2001 From: Marius Conjeaud Date: Wed, 22 May 2024 08:55:48 +0200 Subject: [PATCH] Bump to Django 5 --- .github/workflows/integration-tests.yml | 2 +- pyproject.toml | 4 ++-- requirements.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 972bea2..13a47f0 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -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: diff --git a/pyproject.toml b/pyproject.toml index 06c96fd..5d1fc61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ authors = [{name = "Robin Edwards", email = "robin.ge@gmail.com"}] maintainers = [{name = "Marius Conjeaud", email = "marius.conjeaud@outlook.com"}] 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 = [ @@ -28,7 +28,7 @@ classifiers = [ ] dependencies = [ "neomodel~=5.3.0", - 'django~=4.0' + 'django~=5.0.6' ] version='0.1.2' diff --git a/requirements.txt b/requirements.txt index afc11b0..af9935e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ neomodel~=5.3.0 -django~=4.0 \ No newline at end of file +django~=5.0.6 \ No newline at end of file