Skip to content

Commit 5dda6a9

Browse files
chore: Drop support for Python 3.7 (#258)
1 parent 946ed9c commit 5dda6a9

File tree

4 files changed

+11
-92
lines changed

4 files changed

+11
-92
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
include:
22-
- python-version: "3.7"
23-
toxenv: py37
2422
- python-version: "3.8"
2523
toxenv: py38
2624
- python-version: "3.9"

poetry.lock

Lines changed: 5 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[build-system]
22
build-backend = "poetry_dynamic_versioning.backend"
33
requires = [
4-
"poetry-core==1.6",
5-
"poetry-dynamic-versioning",
4+
"poetry-core==1.9",
5+
"poetry-dynamic-versioning==1.2",
66
]
77

88
[tool.poetry]
@@ -17,14 +17,14 @@ repository = "https://github.com/edgarrmondragon/tap-dbt"
1717
keywords = ["singer.io", "elt", "dbt", "singer-sdk"]
1818

1919
[tool.poetry.dependencies]
20-
python = ">=3.7.1,<4"
20+
python = ">=3.8"
2121
pendulum = ">=2.1.2,<4"
2222
pyyaml = "~=6.0"
2323
requests = "~=2.31.0"
2424
singer-sdk = "~=0.34.0"
2525

2626
[tool.poetry.group.dev.dependencies]
27-
deptry = { version = ">=0.8.0", python = ">=3.8" }
27+
deptry = { version = ">=0.8.0", python = "<4" }
2828
faker = ">=17.6"
2929
pytest = "~=7.4"
3030
responses = "~=0.23.1"
@@ -50,7 +50,7 @@ vcs = "git"
5050
[tool.ruff]
5151
line-length = 88
5252
src = ["tap_dbt", "tests"]
53-
target-version = "py37"
53+
target-version = "py38"
5454

5555
[tool.ruff.lint]
5656
ignore = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
requires =
33
tox>=4
4-
env_list = py{37,38,39,310,311,312}, deps
4+
env_list = py{38,39,310,311,312}, deps
55

66
[testenv]
77
deps =

0 commit comments

Comments
 (0)