Skip to content

Commit

Permalink
Update dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
RealOrangeOne committed Nov 20, 2024
1 parent 1bbb9b2 commit 2e809a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Type check
run: mypy heroku_audit stubs
- name: Format
run: black --check heroku_audit stubs
run: ruff format --check .
- name: lint
run: ruff check heroku_audit stubs
- name: List commands
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,8 @@ heroku-audit = "heroku_audit.cli:app"

[project.optional-dependencies]
dev = [
"ruff",
"mypy",
"black",
"ruff==0.7.4",
"mypy==1.13.0",
"types-requests"
]

Expand All @@ -68,6 +67,6 @@ disallow_incomplete_defs = true
disallow_untyped_decorators = true
check_untyped_defs = true

[tool.ruff]
[tool.ruff.lint]
select = ["E", "F", "I", "W", "N", "B", "A", "C4"]
ignore = ["E501"]

0 comments on commit 2e809a9

Please sign in to comment.