From 30046a9574c29d47cef14b05f455c0fd2c6b5304 Mon Sep 17 00:00:00 2001 From: hcars <42817130+hcars@users.noreply.github.com> Date: Tue, 31 Mar 2020 00:34:32 -0400 Subject: [PATCH 1/3] Update utils.py --- graphos/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphos/utils.py b/graphos/utils.py index 1d66380..82f3335 100644 --- a/graphos/utils.py +++ b/graphos/utils.py @@ -4,8 +4,8 @@ import uuid import random import string - -from django.utils import six, timezone +import six +from django.utils import timezone from django.utils.encoding import force_text from django.utils.functional import Promise from django.db.models.query import QuerySet From 54d9c8aaca99111cad2061d64a4b6b953ee492fd Mon Sep 17 00:00:00 2001 From: Henry <42817130+hcars@users.noreply.github.com> Date: Wed, 8 Jul 2020 12:30:22 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7163398..9c0aa9e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ Graphos ---------------- +This is a fork of the original library which appears to lack a maintainer. I simply changed one of the imports to reflect the updated version of Django, and it worked to build my project. I hope this is of some use to others. [![Build Status](https://travis-ci.org/agiliq/django-graphos.png)](https://travis-ci.org/agiliq/django-graphos) From 6757e928224d16bceb25831eeb004f75a8e91d87 Mon Sep 17 00:00:00 2001 From: Henry <42817130+hcars@users.noreply.github.com> Date: Tue, 22 Jun 2021 10:28:15 +0200 Subject: [PATCH 3/3] Update requirements.txt Added `six` to requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 94a0e83..55cc3b9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ Django +six==1.14.0 # MIT License (MIT)