From 85a4756719f6ddfb5081d6d290d50c62a9d3d064 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 18 Jun 2023 09:03:59 -0500 Subject: [PATCH] Remove persistent_dict.new_hash for real --- pytools/persistent_dict.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pytools/persistent_dict.py b/pytools/persistent_dict.py index 8d8d06d..895aff6 100644 --- a/pytools/persistent_dict.py +++ b/pytools/persistent_dict.py @@ -33,12 +33,6 @@ from dataclasses import fields, is_dataclass from enum import Enum -# Removing this in 2020-12 broke a shocking amount of stuff, such as -# https://github.com/OP2/PyOP2/pull/605 -# Bring it back for now to mitigate the breakage, however this is going -# away in 2021 at the latest. -new_hash = hashlib.sha256 - import errno import os import shutil -- GitLab