From 96440d7fbc6b6dac9382b775382c165099c178a2 Mon Sep 17 00:00:00 2001 From: Michal Charemza Date: Sun, 14 Jan 2024 13:11:34 +0000 Subject: [PATCH] feat: support Python from 3.6.7 This adds support from 3.6.7. While Python 3.6 is quite old now, want to have as high support as possible to make this as useful as possible so people that can't upgrade for whatever reason can still use this. 3.6.7 is chosen because I know that GitHub actions can run tests on it without too much faff, as in https://github.com/uktrade/stream-zip/blob/main/.github/workflows/test.yml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5619dc7..9f7298b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ authors = [ ] description = "Python framework for running reproducible experiments using OpenTTD" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.6.7" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",