use pymmh3 instead of mmh3 module

This commit is contained in:
eli fessler 2022-11-23 13:39:47 -10:00
parent 50e6559518
commit c6e96948cc
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
beautifulsoup4
mmh3
msgpack_python
packaging
pymmh3
requests

2
s3s.py
View File

@ -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.")