From a2c6f9f6c06ca80bd9f451ff7a1a1f578e2d9793 Mon Sep 17 00:00:00 2001
From: Stephan Seitz <stephan.seitz@fau.de>
Date: Thu, 26 Sep 2019 16:43:54 +0200
Subject: [PATCH] Fix DeprecationWarning: import Hashable from collections.abc

---
 pystencils/cache.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pystencils/cache.py b/pystencils/cache.py
index 5df15ae7..41810a58 100644
--- a/pystencils/cache.py
+++ b/pystencils/cache.py
@@ -1,5 +1,5 @@
 import os
-from collections import Hashable
+from collections.abc import Hashable
 from functools import partial
 from itertools import chain
 
-- 
GitLab