Skip to content

Commit

Permalink
chore: Remove unused dev dependencies (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Oct 17, 2024
1 parent eb11e56 commit 2b2df07
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 200 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_tap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
uses: snok/install-poetry@v1
with:
# Version of Poetry to use
version: 1.8.3
version: 1.8.4
virtualenvs-create: true
virtualenvs-in-project: true
- name: Set up Python ${{ matrix.python-version }}
Expand Down
185 changes: 1 addition & 184 deletions poetry.lock

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

21 changes: 6 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,40 +24,28 @@ classifiers = [
"Issue Tracker" = "https://github.com/MeltanoLabs/tap-github/issues"

[tool.poetry.dependencies]
beautifulsoup4 = "~=4.12.0"
nested-lookup = "~=0.2.25"
PyJWT = "2.9.0"
python = ">=3.8"
python-dateutil = "~=2.9"
requests = "~=2.32.3"
# For local SDK dev:
# singer-sdk = {path = "../singer-sdk", develop = true}
singer-sdk = { version = "~=0.32.0", python = "<4" }
nested-lookup = "~=0.2.25"
beautifulsoup4 = "~=4.12.0"

[tool.poetry.dev-dependencies]
pytest = ">=7.3.1"
mypy = ">=1.3.0"
flake8 = ">=5.0.4"
black = ">=23.3.0"
requests-cache = ">=1.0.1"
types-beautifulsoup4 = ">=4.12.0"
types-python-dateutil = "~=2.9.0"
types-requests = ">=2.30.0"
types-simplejson = "~=3.19.0"
requests-cache = ">=1.0.1"
isort = ">=5.10.1"

[[tool.mypy.overrides]]
module = ["backoff"]
ignore_missing_imports = true

[tool.black]
line-length = 88

[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_github"

[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
Expand All @@ -72,6 +60,9 @@ markers = [
"username_list: mark a test as using a list of usernames in config",
]

[tool.ruff]
target-version = "py38"

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

0 comments on commit 2b2df07

Please sign in to comment.