Skip to content

Commit

Permalink
Drop support for Python 3.7 (#57)
Browse files Browse the repository at this point in the history
* Drop support for Python 3.7
  • Loading branch information
JCZuurmond authored Jun 4, 2024
1 parent 42f3980 commit 50ce6aa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 50ce6aa

Please sign in to comment.