Skip to content

Commit

Permalink
chore: Drop support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Feb 5, 2024
1 parent 946ed9c commit 6bb41f4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 89 deletions.
89 changes: 5 additions & 84 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[build-system]
build-backend = "poetry_dynamic_versioning.backend"
requires = [
"poetry-core==1.6",
"poetry-dynamic-versioning",
"poetry-core==1.9",
"poetry-dynamic-versioning==1.2",
]

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

[tool.poetry.dependencies]
python = ">=3.7.1,<4"
python = ">=3.8"
pendulum = ">=2.1.2,<4"
pyyaml = "~=6.0"
requests = "~=2.31.0"
singer-sdk = "~=0.34.0"

[tool.poetry.group.dev.dependencies]
deptry = { version = ">=0.8.0", python = ">=3.8" }
deptry = { version = ">=0.8.0", python = "<4" }
faker = ">=17.6"
pytest = "~=7.4"
responses = "~=0.23.1"
Expand All @@ -50,7 +50,7 @@ vcs = "git"
[tool.ruff]
line-length = 88
src = ["tap_dbt", "tests"]
target-version = "py37"
target-version = "py38"

[tool.ruff.lint]
ignore = [
Expand Down

0 comments on commit 6bb41f4

Please sign in to comment.