From 169b427fdebd247384de049dc7af8d70946e9354 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 17 Dec 2023 16:05:00 -0800 Subject: [PATCH] bump min required python version to 3.7.0 --- archivebox/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/config.py b/archivebox/config.py index 0ee74922..424cf918 100644 --- a/archivebox/config.py +++ b/archivebox/config.py @@ -1125,7 +1125,7 @@ def check_system_config(config: ConfigDict=CONFIG) -> None: raise SystemExit(2) ### Check Python environment - if sys.version_info[:3] < (3, 6, 0): + if sys.version_info[:3] < (3, 7, 0): stderr(f'[X] Python version is not new enough: {config["PYTHON_VERSION"]} (>3.6 is required)', color='red') stderr(' See https://github.com/ArchiveBox/ArchiveBox/wiki/Troubleshooting#python for help upgrading your Python installation.') raise SystemExit(2)