From 3505635706ca45b84a01d13c2273b8dacfc904e8 Mon Sep 17 00:00:00 2001 From: Mattia Mancini <mancini@astron.nl> Date: Thu, 9 Dec 2021 16:26:08 +0100 Subject: [PATCH] Allow older version of python for compatibility with production systems --- atdb_csv_gen/setup.py | 2 +- atdb_inspect_transition/setup.py | 2 +- atdb_result_gatherer/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/atdb_csv_gen/setup.py b/atdb_csv_gen/setup.py index 07cc9eb..5716628 100644 --- a/atdb_csv_gen/setup.py +++ b/atdb_csv_gen/setup.py @@ -17,5 +17,5 @@ setup( scripts=["bin/atdb_csv_gen"], license="Apache License, Version 2.0", zip=False, - python_requires=">=3.7" + python_requires=">=3.6.8" ) diff --git a/atdb_inspect_transition/setup.py b/atdb_inspect_transition/setup.py index e83aa54..73082bc 100644 --- a/atdb_inspect_transition/setup.py +++ b/atdb_inspect_transition/setup.py @@ -17,5 +17,5 @@ setup( scripts=["bin/atdb_inspect_transition"], license="Apache License, Version 2.0", zip=False, - python_requires=">=3.7" + python_requires=">=3.6.8" ) diff --git a/atdb_result_gatherer/setup.py b/atdb_result_gatherer/setup.py index 05d290f..c28f876 100644 --- a/atdb_result_gatherer/setup.py +++ b/atdb_result_gatherer/setup.py @@ -17,5 +17,5 @@ setup( scripts=["bin/atdb_result_gatherer"], license="Apache License, Version 2.0", zip=False, - python_requires=">=3.7" + python_requires=">=3.6.8" ) -- GitLab