diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 8dce4a7..831c522 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -52,7 +52,7 @@ body: description: | examples: - **OS**: Ubuntu 20.04 - - **Python**: 3.7.2 (`python --version`) + - **Python**: 3.10.13 (`python --version`) - **dbt**: 0.21.0 (`dbt --version`) - **pytest-dbt-core**: 0.1.0 (`pip freeze | grep pytest-dbt-core`) value: | diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index b89a40f..ac33832 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -36,7 +36,6 @@ jobs: fail-fast: false matrix: python-version: - - "3.7" - "3.8" - "3.9" - "3.10" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b7fc35..63f0b20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +- Drop support for Python 3.7 ([PR](https://github.com/godatadriven/pytest-dbt-core/pull/57)) + ## [0.2.4] - 2024-06-04 - Support dbt v1.8 ([PR](https://github.com/godatadriven/pytest-dbt-core/pull/58)) diff --git a/setup.cfg b/setup.cfg index 46e10fb..ca611d4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,7 +22,7 @@ packages = find: package_dir = =src install_requires = dbt-core>=1.0.0 -python_requires = >=3.7 +python_requires = >=3.8 [options.packages.find] where = src @@ -71,7 +71,6 @@ spark_options = [tox:tox] envlist = - py3.7-dbt-spark{11,12,13,14,15} # dbt-spark v1.6 or later does not support Python 3.7 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 isolated_build = true