Skip to content

Commit

Permalink
chore: Drop support for Python 3.7 (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Feb 5, 2024
1 parent 946ed9c commit 5dda6a9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 92 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ jobs:
fail-fast: true
matrix:
include:
- python-version: "3.7"
toxenv: py37
- python-version: "3.8"
toxenv: py38
- python-version: "3.9"
Expand Down
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
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
requires =
tox>=4
env_list = py{37,38,39,310,311,312}, deps
env_list = py{38,39,310,311,312}, deps

[testenv]
deps =
Expand Down

0 comments on commit 5dda6a9

Please sign in to comment.