From fdef8e598adc61dcfa5e13c02f1a846ab12bbaff Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Mon, 25 Nov 2024 09:39:55 +0100 Subject: [PATCH] configure tests to run with Python 3.6+ only this avoids sanity on Galaxy complain that it can't import the code on Python 2 (which we don't support anymore) Refs: #1799 --- tests/config.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/config.yml diff --git a/tests/config.yml b/tests/config.yml new file mode 100644 index 000000000..41f529264 --- /dev/null +++ b/tests/config.yml @@ -0,0 +1,3 @@ +--- +modules: + python_requires: ">=3.6"