From c6e96948cc7ad2842c44602cde3c60de21d246b7 Mon Sep 17 00:00:00 2001 From: eli fessler Date: Wed, 23 Nov 2022 13:39:47 -1000 Subject: [PATCH] use pymmh3 instead of mmh3 module --- requirements.txt | 2 +- s3s.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 28afbaf..0de5a70 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ beautifulsoup4 -mmh3 msgpack_python packaging +pymmh3 requests diff --git a/s3s.py b/s3s.py index 17c425b..df5c567 100755 --- a/s3s.py +++ b/s3s.py @@ -1215,7 +1215,7 @@ def export_seed_json(skipprefetch=False): '''Export a JSON file for use with Lean's seed checker at https://leanny.github.io/splat3seedchecker/.''' try: - import mmh3 + import pymmh3 as mmh3 except ModuleNotFoundError: print("This function requires a Python module you don't have installed. " \ "Please run " + '`\033[91m' + "pip install -r requirements.txt" + '\033[0m`' + " and try again.")