From c2dc47f882ae5f089804d5f3fecd94e3e9ba1c0a Mon Sep 17 00:00:00 2001 From: Cor Zuurmond Date: Wed, 9 Aug 2023 21:29:51 +0200 Subject: [PATCH] Exclude dbt-spark v1.1, v1.2 and v1.3 for Python 3.7 --- setup.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index c4fcbbc..901d0fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -70,7 +70,10 @@ spark_options = spark.sql.catalogImplementation: in-memory [tox:tox] -envlist = py37-dbt-spark{11,12,13,14,15},py{3.8,3.9,3.10,3.11}-dbt-spark{11,12,13,14,15,16} +envlist = + py37-dbt-spark{11,12,13,14,15} # dbt-spark v1.6 does not support Python 3.7 + py{3.8,3.9,3.10}-dbt-spark{11,12,13,14,15,16} + py11-dbt-spark{14,15,16} # Previous versions fail when using Python 3.11 isolated_build = true skip_missing_interpreters = true