From 2f09d58418483de9006f6217e83f904614232807 Mon Sep 17 00:00:00 2001 From: pyrco <105293448+pyrco@users.noreply.github.com> Date: Tue, 1 Nov 2022 09:29:04 +0100 Subject: [PATCH] Configure the minimum python version The Python version dissect is developed and tested against is currently 3.9. It is set as minimum version and not also as maximum version because newer versions (like 3.10) might work and because it makes transitioning to newer Python versions easier. (DIS-1490) --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index e5e2e69..01033b1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,3 +9,6 @@ long_description_content_type = text/markdown license_files = LICENSE, COPYRIGHT classifiers = Programming Language :: Python :: 3 + +[options] +python_requires = ~=3.9