Skip to content

Commit

Permalink
Updated linters.yml and pyproject.toml
Browse files Browse the repository at this point in the history
- linters have a version of ~= 23.11.0 for black and 0.1.6 for ruff
- pyproject.toml removed ^ to force 0.1.6 version for ruff
  • Loading branch information
jcadam14 committed Jan 18, 2024
1 parent f1a7c74 commit 92411ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ jobs:
- uses: psf/black@stable
with:
options: "--check --diff --verbose"
version: "~= 23.11.0"
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
with:
version: 0.1.6
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pytest-cov = "^4.1.0"
pytest-mock = "^3.12.0"
pytest-env = "^1.1.3"
pytest-alembic = "^0.10.7"
ruff = "^0.1.6"
ruff = "0.1.6"
black = "^23.11.0"
pytest-asyncio = "^0.23.2"
aiosqlite = "^0.19.0"
Expand Down

0 comments on commit 92411ab

Please sign in to comment.