From 89c63b227534ff7abedeab6d8f6e6c5aafabea6e Mon Sep 17 00:00:00 2001 From: Florian Eitel Date: Sat, 14 Jan 2023 13:02:34 +0100 Subject: [PATCH] Update to Django 3.1 --- Pipfile | 2 +- Pipfile.lock | 14 +++++++------- requirements.d/all.txt | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Pipfile b/Pipfile index 7b3677b..552e0f6 100644 --- a/Pipfile +++ b/Pipfile @@ -6,7 +6,7 @@ name = "pypi" [packages] dnspython = "*" netaddr = "*" -django = "~=3.0.0" +django = "~=3.1.0" django-bootstrap-form = "*" django-referrer-policy = "*" django-registration-redux = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 043db55..25805a8 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "e69d1b89b750a32ddcc3b79ad32e823e55cd3e5d25e7ad1bce4c520803db6ac2" + "sha256": "f5ec96dcd1c393baba435295be3aaf3251b0d9cf9d8f4e17daec5a658b315a73" }, "pipfile-spec": 6, "requires": { @@ -233,11 +233,11 @@ }, "django": { "hashes": [ - "sha256:9bc7aa619ed878fedba62ce139abe663a147dccfd20e907725ec11e02a1ca225", - "sha256:d58d8394036db75a81896037d757357e79406e8f68816c3e8a28721c1d9d4c11" + "sha256:0fabc786489af16ad87a8c170ba9d42bfd23f7b699bd5ef05675864e8d012859", + "sha256:72a4a5a136a214c39cf016ccdd6b69e2aa08c7479c66d93f3a9b5e4bb9d8a347" ], "index": "pypi", - "version": "==3.0.14" + "version": "==3.1.14" }, "django-bootstrap-form": { "hashes": [ @@ -571,11 +571,11 @@ }, "django": { "hashes": [ - "sha256:9bc7aa619ed878fedba62ce139abe663a147dccfd20e907725ec11e02a1ca225", - "sha256:d58d8394036db75a81896037d757357e79406e8f68816c3e8a28721c1d9d4c11" + "sha256:0fabc786489af16ad87a8c170ba9d42bfd23f7b699bd5ef05675864e8d012859", + "sha256:72a4a5a136a214c39cf016ccdd6b69e2aa08c7479c66d93f3a9b5e4bb9d8a347" ], "index": "pypi", - "version": "==3.0.14" + "version": "==3.1.14" }, "django-debug-toolbar": { "hashes": [ diff --git a/requirements.d/all.txt b/requirements.d/all.txt index 6868737..1af602e 100644 --- a/requirements.d/all.txt +++ b/requirements.d/all.txt @@ -1,7 +1,7 @@ # packages always needed dnspython netaddr -django~=3.0.0 +django~=3.1.0 django-bootstrap-form django-referrer-policy django-registration-redux diff --git a/setup.py b/setup.py index e97a4a4..cd038f1 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup( install_requires=[ 'dnspython', 'netaddr', - 'django>=3.0.0', + 'django>=3.1.0', 'django-bootstrap-form', 'django-referrer-policy', 'django-registration-redux',