Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ where = src

[options.extras_require]
test =
dbt-spark[ODBC]>=1.1.0,<1.9.0
dbt-spark[ODBC]>=1.1.0,<1.10.0
pyspark>=3.0.0,<4.0.0
pre-commit>=2.14.1
pytest>=6.2.5
Expand Down Expand Up @@ -71,8 +71,8 @@ spark_options =

[tox:tox]
envlist =
py{3.8,3.9,3.10}-dbt-spark{11,12,13,14,15,16,17,18}
py3.11-dbt-spark{14,15,16,17,18} # Previous dbt-spark versions fail when using Python 3.11
py{3.8,3.9,3.10}-dbt-spark{11,12,13,14,15,16,17,18,19}
py3.11-dbt-spark{14,15,16,17,18,19} # Previous dbt-spark versions fail when using Python 3.11
isolated_build = true
skip_missing_interpreters = true

Expand All @@ -95,6 +95,7 @@ deps =
dbt-spark16: dbt-spark[ODBC]~=1.6.0
dbt-spark17: dbt-spark[ODBC]~=1.7.0
dbt-spark18: dbt-spark[ODBC]~=1.8.0
dbt-spark19: dbt-spark[ODBC]~=1.9.0
pip >= 19.3.1
extras = test
commands = pytest {posargs:tests}
Expand All @@ -116,6 +117,7 @@ deps =
dbt-spark16: dbt-spark[ODBC]~=1.6.0
dbt-spark17: dbt-spark[ODBC]~=1.7.0
dbt-spark18: dbt-spark[ODBC]~=1.8.0
dbt-spark19: dbt-spark[ODBC]~=1.9.0
pip >= 19.3.1
extras = test
commands_pre = dbt deps --project-dir {toxinidir}/docs/source/_static/dbt_project --profiles-dir {toxinidir}/docs/source/_static/dbt_project
Expand Down
Loading