From 7fadaf66d52a67f4d8e7b8b365bade448955239d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Schm=C3=B6lder?= <20299934+schmoelder@users.noreply.github.com> Date: Fri, 13 May 2022 08:11:22 +0200 Subject: [PATCH 1/3] Update core.py --- diskcache/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diskcache/core.py b/diskcache/core.py index fb343be..0007eed 100644 --- a/diskcache/core.py +++ b/diskcache/core.py @@ -9,7 +9,7 @@ import json import os import os.path as op -import pickle +import dill as pickle import pickletools import sqlite3 import struct From 56110b9ab25c4cc56b8363f76ef777dc9c016fe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Schm=C3=B6lder?= <20299934+schmoelder@users.noreply.github.com> Date: Fri, 13 May 2022 08:13:04 +0200 Subject: [PATCH 2/3] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index efb2160..8e14a87 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,7 @@ -e . blue coverage +dill django==3.2.* django_redis doc8 From 7f86b7f14870dd518c97b201f5d94f74eb01f445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Schm=C3=B6lder?= <20299934+schmoelder@users.noreply.github.com> Date: Fri, 13 May 2022 08:14:57 +0200 Subject: [PATCH 3/3] Update setup.py --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b49d9c8..58c7b26 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,9 @@ def run_tests(self): tests_require=['tox'], cmdclass={'test': Tox}, python_requires='>=3', - install_requires=[], + install_requires=[ + 'dill' + ], classifiers=( 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',